aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-09-16 15:15:03 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-09-16 15:15:03 +0000
commit17ec98b834d38bce562cc2c0c7447e7f00280a22 (patch)
tree41a79c6f88df76a4f34c5a656a4e733c1d43a8c4 /phpBB/search.php
parentcc5d77e06d4daf4b5899717a9b8695a72e5927b4 (diff)
downloadforums-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/search.php')
-rw-r--r--phpBB/search.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 9e57c45e4c..741580c21c 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -799,10 +799,10 @@ if ($keywords || $author || $author_id || $search_id || $submit)
'TOPIC_TYPE' => $topic_type,
'TOPIC_FOLDER_IMG' => $user->img($folder_img, $folder_alt),
- 'TOPIC_FOLDER_IMG_SRC' => $user->img($folder_img, $folder_alt, false, '', 'src'),
+ 'TOPIC_FOLDER_IMG_SRC' => $user->img($folder_img, $folder_alt, 'src'),
'TOPIC_FOLDER_IMG_ALT' => $user->lang[$folder_alt],
- 'TOPIC_FOLDER_IMG_WIDTH'=> $user->img($folder_img, '', false, '', 'width'),
- 'TOPIC_FOLDER_IMG_HEIGHT' => $user->img($folder_img, '', false, '', 'height'),
+ 'TOPIC_FOLDER_IMG_WIDTH'=> $user->img($folder_img, '', 'width'),
+ 'TOPIC_FOLDER_IMG_HEIGHT' => $user->img($folder_img, '', 'height'),
'TOPIC_ICON_IMG' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['img'] : '',
'TOPIC_ICON_IMG_WIDTH' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['width'] : '',