diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-16 15:15:03 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-16 15:15:03 +0000 |
| commit | 17ec98b834d38bce562cc2c0c7447e7f00280a22 (patch) | |
| tree | 41a79c6f88df76a4f34c5a656a4e733c1d43a8c4 /phpBB/includes/functions_display.php | |
| parent | cc5d77e06d4daf4b5899717a9b8695a72e5927b4 (diff) | |
| download | forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.gz forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.bz2 forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.tar.xz forums-17ec98b834d38bce562cc2c0c7447e7f00280a22.zip | |
simplify $user->img()
git-svn-id: file:///svn/phpbb/trunk@8859 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
| -rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index eb9daf48be..03c9bd30ed 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -408,7 +408,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod 'TOPICS' => $row['forum_topics'], $l_post_click_count => $post_click_count, 'FORUM_FOLDER_IMG' => $user->img($folder_image, $folder_alt), - 'FORUM_FOLDER_IMG_SRC' => $user->img($folder_image, $folder_alt, false, '', 'src'), + 'FORUM_FOLDER_IMG_SRC' => $user->img($folder_image, $folder_alt, 'src'), 'FORUM_FOLDER_IMG_ALT' => isset($user->lang[$folder_alt]) ? $user->lang[$folder_alt] : '', 'FORUM_IMAGE' => ($row['forum_image']) ? '<img src="' . PHPBB_ROOT_PATH . $row['forum_image'] . '" alt="' . $user->lang[$folder_alt] . '" />' : '', 'FORUM_IMAGE_SRC' => ($row['forum_image']) ? PHPBB_ROOT_PATH . $row['forum_image'] : '', |
