diff options
author | Tom Beddard <subblue@users.sourceforge.net> | 2005-12-29 01:46:05 +0000 |
---|---|---|
committer | Tom Beddard <subblue@users.sourceforge.net> | 2005-12-29 01:46:05 +0000 |
commit | 2753d3310c088371b594a7f5b5d2f4f5dc50e7a7 (patch) | |
tree | 2c376ccc4a4ebffcbba893e4351139d299b06613 | |
parent | 0334d424779dac4f0adf89caa0362a03f93163c3 (diff) | |
download | forums-2753d3310c088371b594a7f5b5d2f4f5dc50e7a7.tar forums-2753d3310c088371b594a7f5b5d2f4f5dc50e7a7.tar.gz forums-2753d3310c088371b594a7f5b5d2f4f5dc50e7a7.tar.bz2 forums-2753d3310c088371b594a7f5b5d2f4f5dc50e7a7.tar.xz forums-2753d3310c088371b594a7f5b5d2f4f5dc50e7a7.zip |
Added the topic icon src variable to bring in line with viewtopic and viewforum
git-svn-id: file:///svn/phpbb/trunk@5389 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/search.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index e2c68409c3..8a4f0f4adc 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -483,6 +483,7 @@ if ($keywords || $author || $search_id || $search_session_id) 'LAST_POST_IMG' => $user->img('icon_post_latest', 'VIEW_LATEST_POST'), 'TOPIC_FOLDER_IMG' => $user->img($folder_img, $folder_alt), + 'TOPIC_FOLDER_IMG_SRC' => $user->img($folder_img, $folder_alt, false, '', 'src'), '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'] : '', 'TOPIC_ICON_IMG_HEIGHT' => (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['height'] : '', |