aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-08-05 15:49:28 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-08-05 15:49:28 +0000
commitb4b901b82552e639cae00c4dc38542cf6fe2d873 (patch)
tree27a02a9b1861ef07cd22dd19e6b970a82945e490 /phpBB/includes/functions_posting.php
parent0a007bd5d746892459201306363c38cbdec36bc2 (diff)
downloadforums-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/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 0fb2f72b2c..3d1b8aa96a 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -892,7 +892,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
$template->assign_block_vars($mode . '_row', array(
'POSTER_NAME' => $poster,
'POST_SUBJECT' => $post_subject,
- 'MINI_POST_IMG' => $user->img('icon_post', $user->lang['POST']),
+ 'MINI_POST_IMG' => $user->img('icon_post_target', $user->lang['POST']),
'POST_DATE' => $user->format_date($row['post_time']),
'MESSAGE' => str_replace("\n", '<br />', $message),
'DECODED_MESSAGE' => $decoded_message,
@@ -907,7 +907,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
if ($mode == 'topic_review')
{
- $template->assign_var('QUOTE_IMG', $user->img('btn_quote', $user->lang['REPLY_WITH_QUOTE']));
+ $template->assign_var('QUOTE_IMG', $user->img('icon_post_quote', $user->lang['REPLY_WITH_QUOTE']));
}
return true;