diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-04 18:49:19 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-04 18:49:19 +0000 |
commit | d404c7055267deec7ecb07a6b80f98f07c0325e6 (patch) | |
tree | 67ec47a97cccc9f6462f3b6c15da3e67fb31ecd0 /phpBB/includes/mcp/mcp_queue.php | |
parent | 5c181bc5289c54322d61dcc008e539f7c32e882b (diff) | |
download | forums-d404c7055267deec7ecb07a6b80f98f07c0325e6.tar forums-d404c7055267deec7ecb07a6b80f98f07c0325e6.tar.gz forums-d404c7055267deec7ecb07a6b80f98f07c0325e6.tar.bz2 forums-d404c7055267deec7ecb07a6b80f98f07c0325e6.tar.xz forums-d404c7055267deec7ecb07a6b80f98f07c0325e6.zip |
Some extra template variables *_EXPLAIN which some might wish to use
git-svn-id: file:///svn/phpbb/trunk@6010 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 1a3fc4b273..9cdd9bcacb 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -312,6 +312,8 @@ class mcp_queue // Now display the page $template->assign_vars(array( 'L_DISPLAY_ITEMS' => ($mode == 'unapproved_posts') ? $user->lang['DISPLAY_POSTS'] : $user->lang['DISPLAY_TOPICS'], + 'L_EXPLAIN' => ($mode == 'unapproved_posts') ? $user->lang['MCP_QUEUE_UNAPPROVED_POSTS_EXPLAIN'] : $user->lang['MCP_QUEUE_UNAPPROVED_TOPICS_EXPLAIN'], + 'L_TITLE' => ($mode == 'unapproved_posts') ? $user->lang['MCP_QUEUE_UNAPPROVED_POSTS'] : $user->lang['MCP_QUEUE_UNAPPROVED_TOPICS'], 'L_ONLY_TOPIC' => ($topic_id) ? sprintf($user->lang['ONLY_TOPIC'], $topic_info['topic_title']) : '', 'S_FORUM_OPTIONS' => $forum_options, |