mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-14 21:14:39 +01:00
Display a message if no topics or forums are selected when unsubscribing. #34855
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8997 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
980cb2e5bb
commit
c969d4f83f
@ -135,6 +135,7 @@
|
|||||||
<li>[Fix] Do not display last post link and sort display options for search engines. (Bug #15088)</li>
|
<li>[Fix] Do not display last post link and sort display options for search engines. (Bug #15088)</li>
|
||||||
<li>[Fix] Make sure users still get notifications if they set to only be notified by Jabber, but Jabber service disabled. (Bug #29715 - Patch by Paul)</li>
|
<li>[Fix] Make sure users still get notifications if they set to only be notified by Jabber, but Jabber service disabled. (Bug #29715 - Patch by Paul)</li>
|
||||||
<li>[Fix] Don't show forum subscription link on categories. (Bug #34895)</li>
|
<li>[Fix] Don't show forum subscription link on categories. (Bug #34895)</li>
|
||||||
|
<li>[Fix] Display a message if no topics or forums are selected when unsubscribing. (Bug #34855)</li>
|
||||||
|
|
||||||
<li>[Change] No longer allow the direct use of MULTI_INSERT in sql_build_array. sql_multi_insert() must be used.</li>
|
<li>[Change] No longer allow the direct use of MULTI_INSERT in sql_build_array. sql_multi_insert() must be used.</li>
|
||||||
<li>[Change] Display warning in ACP if config.php file is left writable.</li>
|
<li>[Change] Display warning in ACP if config.php file is left writable.</li>
|
||||||
|
@ -237,7 +237,10 @@ class ucp_main
|
|||||||
$l_unwatch .= '_TOPICS';
|
$l_unwatch .= '_TOPICS';
|
||||||
}
|
}
|
||||||
$msg = $user->lang['UNWATCHED' . $l_unwatch];
|
$msg = $user->lang['UNWATCHED' . $l_unwatch];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$msg = $user->lang['NO_WATCHED_SELECTED'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -316,6 +316,7 @@ $lang = array_merge($lang, array(
|
|||||||
'NO_SAVED_DRAFTS' => 'No drafts saved.',
|
'NO_SAVED_DRAFTS' => 'No drafts saved.',
|
||||||
'NO_TO_RECIPIENT' => 'None',
|
'NO_TO_RECIPIENT' => 'None',
|
||||||
'NO_WATCHED_FORUMS' => 'You are not subscribed to any forums.',
|
'NO_WATCHED_FORUMS' => 'You are not subscribed to any forums.',
|
||||||
|
'NO_WATCHED_SELECTED' => 'You have not selected any subscribed topics or forums.',
|
||||||
'NO_WATCHED_TOPICS' => 'You are not subscribed to any topics.',
|
'NO_WATCHED_TOPICS' => 'You are not subscribed to any topics.',
|
||||||
|
|
||||||
'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case and must contain numbers.',
|
'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case and must contain numbers.',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user