diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-08-05 15:49:28 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-08-05 15:49:28 +0000 |
commit | b4b901b82552e639cae00c4dc38542cf6fe2d873 (patch) | |
tree | 27a02a9b1861ef07cd22dd19e6b970a82945e490 /phpBB/includes/mcp/mcp_queue.php | |
parent | 0a007bd5d746892459201306363c38cbdec36bc2 (diff) | |
download | forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.gz forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.bz2 forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.xz forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.zip |
- fixed some bugs
- made imageset naming more consistent
- updated every schema to be consistent and also fixed it (every db should install fine now)
-
git-svn-id: file:///svn/phpbb/trunk@6237 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index e09dfb4d09..25fdc0a90a 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -136,9 +136,9 @@ class mcp_queue 'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $post_info['forum_id'] . '&t=' . $post_info['topic_id']), 'RETURN_QUEUE' => sprintf($user->lang['RETURN_QUEUE'], '<a href="' . append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue' . (($topic_id) ? '&mode=unapproved_topics' : '&mode=unapproved_posts')) . "&start=$start\">", '</a>'), - 'REPORTED_IMG' => $user->img('icon_reported', $user->lang['POST_REPORTED']), - 'UNAPPROVED_IMG' => $user->img('icon_unapproved', $user->lang['POST_UNAPPROVED']), - 'EDIT_IMG' => $user->img('btn_edit', $user->lang['EDIT_POST']), + 'REPORTED_IMG' => $user->img('icon_topic_reported', $user->lang['POST_REPORTED']), + 'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', $user->lang['POST_UNAPPROVED']), + 'EDIT_IMG' => $user->img('icon_post_edit', $user->lang['EDIT_POST']), 'POSTER_NAME' => $poster, 'POST_PREVIEW' => $message, |