mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
#15464 #15384 Yes, there is a lang change. git-svn-id: file:///svn/phpbb/trunk@8253 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8523d43347
commit
da7fc3d188
6 changed files with 9 additions and 4 deletions
|
@ -105,6 +105,9 @@
|
|||
<li>[Change] Set template recompilation to be disabled by default. All mod and style authors and all those who want to modify their styles should enabled it after installation.</li>
|
||||
<li>[Change] Disable debug mode. All mod and style authors should enable DEBUG and DEBUG_EXTRA.</li>
|
||||
<li>[Fix] Check error reporting level for all error level. This fixes a problem for hosts having manipulated the error handler. (Bug #14831)</li>
|
||||
<li>[Fix] Recache Moderators when copying permissions. (Bug #15384)</li>
|
||||
<li>[Fix] Propagate sort options in mcp_forums (Bug #15464)</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<a name="v30rc6"></a><h3>1.ii. Changes since 3.0.RC6</h3>
|
||||
|
|
|
@ -239,6 +239,7 @@ class acp_forums
|
|||
// Now insert the data
|
||||
$db->sql_multi_insert(ACL_USERS_TABLE, $users_sql_ary);
|
||||
$db->sql_multi_insert(ACL_GROUPS_TABLE, $groups_sql_ary);
|
||||
cache_moderators();
|
||||
}
|
||||
|
||||
$auth->acl_clear_prefetch();
|
||||
|
|
|
@ -287,6 +287,7 @@ class acp_main
|
|||
|
||||
// Clear permissions
|
||||
$auth->acl_clear_prefetch();
|
||||
cache_moderators();
|
||||
|
||||
add_log('admin', 'LOG_PURGE_CACHE');
|
||||
break;
|
||||
|
|
|
@ -126,7 +126,7 @@ function mcp_forum_view($id, $mode, $action, $forum_info)
|
|||
|
||||
'S_MCP_ACTION' => $url . "&i=$id&forum_action=$action&mode=$mode&start=$start" . (($merge_select) ? $selected_ids : ''),
|
||||
|
||||
'PAGINATION' => generate_pagination($url . "&i=$id&action=$action&mode=$mode" . (($merge_select) ? $selected_ids : ''), $forum_topics, $topics_per_page, $start),
|
||||
'PAGINATION' => generate_pagination($url . "&i=$id&action=$action&mode=$mode&sd=$sort_dir&sk=$sort_key&st=$sort_days" . (($merge_select) ? $selected_ids : ''), $forum_topics, $topics_per_page, $start),
|
||||
'PAGE_NUMBER' => on_page($forum_topics, $topics_per_page, $start),
|
||||
'TOTAL_TOPICS' => ($forum_topics == 1) ? $user->lang['VIEW_FORUM_TOPIC'] : sprintf($user->lang['VIEW_FORUM_TOPICS'], $forum_topics),
|
||||
));
|
||||
|
|
|
@ -115,7 +115,7 @@ $lang = array_merge($lang, array(
|
|||
'FIRST' => 'First',
|
||||
|
||||
'ICONS_ADD' => 'Add a new icon',
|
||||
'ICON_NONE_ADDED' => 'No icons were added.',
|
||||
'ICONS_NONE_ADDED' => 'No icons were added.',
|
||||
'ICONS_ONE_ADDED' => 'The icon has been added successfully.',
|
||||
'ICONS_ADDED' => 'The icons have been added successfully.',
|
||||
'ICONS_CONFIG' => 'Icon configuration',
|
||||
|
|
Loading…
Add table
Reference in a new issue