Merge branch 'ticket/11140' of github.com:EXreaction/phpbb3 into ticket/11103

This commit is contained in:
Nathan Guse 2012-10-09 22:03:18 -05:00
commit 9d955507b6
2 changed files with 2 additions and 2 deletions

View file

@ -251,7 +251,7 @@ function mcp_front_view($id, $mode, $action)
'ORDER_BY' => 'p.message_time DESC', 'ORDER_BY' => 'p.message_time DESC',
); );
$sql_ary = $db->sql_build_query('SELECT', $sql_ary); $sql = $db->sql_build_query('SELECT', $sql_ary);
$result = $db->sql_query_limit($sql, 5); $result = $db->sql_query_limit($sql, 5);
$pm_by_id = $pm_list = array(); $pm_by_id = $pm_list = array();

View file

@ -57,7 +57,7 @@ $lang = array_merge($lang, array(
'SYSTEM_TIMEZONE' => 'Guest timezone', 'SYSTEM_TIMEZONE' => 'Guest timezone',
'SYSTEM_TIMEZONE_EXPLAIN' => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.', 'SYSTEM_TIMEZONE_EXPLAIN' => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.',
'WARNINGS_EXPIRE' => 'Warning duration', 'WARNINGS_EXPIRE' => 'Warning duration',
'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before the warning will automatically expire from a users record. Set this value to 0 to make warnings permanent.', 'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before a warning will automatically expire from a users record. Set this value to 0 to make warnings permanent.',
)); ));
// Board Features // Board Features