mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-23 19:45:10 +01:00
Small language fix (#32795) and tiny bug fix
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8949 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
abff17ba87
commit
92c759456d
@ -105,7 +105,7 @@
|
||||
<li>[Fix] Use correct link for post author search. (Bug #32595)</li>
|
||||
<li>[Fix] Do not decrease topics counter when deleting shadow topics. (Bug #26495)</li>
|
||||
<li>[Fix] Send localised disapproval reasons in the recipients local language. (Bug #31645)</li>
|
||||
<li>[Fix] Language typos/fixes. (Bug #27625, #30755, #34185)</li>
|
||||
<li>[Fix] Language typos/fixes. (Bugs #27625, #30755, #34185, #32795)</li>
|
||||
<li>[Fix] Added missing terms parameter to search pagination. (Bug #34085)</li>
|
||||
<li>[Fix] Wrong table order in query obtaining posts if post id given.</li>
|
||||
<li>[Fix] Do not display reported topic icon for shadow topics. (Bug #13970)</li>
|
||||
|
@ -939,7 +939,7 @@ function user_ban($mode, $ban, $ban_len, $ban_len_other, $ban_exclude, $ban_reas
|
||||
$sql = "SELECT $type
|
||||
FROM " . BANLIST_TABLE . "
|
||||
WHERE $sql_where
|
||||
AND ban_exclude = $ban_exclude";
|
||||
AND ban_exclude = " . (int) $ban_exclude;
|
||||
$result = $db->sql_query($sql);
|
||||
|
||||
// Reset $sql_where, because we use it later...
|
||||
|
@ -280,7 +280,7 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'JABBER' => 'Jabber',
|
||||
'JOINED' => 'Joined',
|
||||
'JUMP_PAGE' => 'Enter the page number you wish to go to.',
|
||||
'JUMP_PAGE' => 'Enter the page number you wish to go to',
|
||||
'JUMP_TO' => 'Jump to',
|
||||
'JUMP_TO_PAGE' => 'Click to jump to page…',
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user