aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-04-11 21:32:22 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-04-11 21:32:22 +0000
commitd92380657d555a3f8267652183d02e2aae87511a (patch)
treed5e94c57f53ea2ff8fdbda08bf0d9b6692021eba /phpBB/includes/functions_display.php
parent557d09bb72f7e9848b6fc50ed4e2ba651b89e743 (diff)
downloadforums-d92380657d555a3f8267652183d02e2aae87511a.tar
forums-d92380657d555a3f8267652183d02e2aae87511a.tar.gz
forums-d92380657d555a3f8267652183d02e2aae87511a.tar.bz2
forums-d92380657d555a3f8267652183d02e2aae87511a.tar.xz
forums-d92380657d555a3f8267652183d02e2aae87511a.zip
- made path information available to template (T_)
- eased topic/post icon in templates (removing hardcoded img) - added S_FIRST_ROW and S_LAST_ROW to template engine git-svn-id: file:///svn/phpbb/trunk@5118 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index 190d07015e..1454391e9c 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -304,7 +304,7 @@ function display_forums($root_data = '', $display_moderators = TRUE)
'LAST_POST_IMG' => $user->img('icon_post_latest', 'VIEW_LATEST_POST'),
'FORUM_ID' => $row['forum_id'],
- 'FORUM_FOLDER_IMG' => ($row['forum_image']) ? '<img src="' . $phpbb_root_path . $row['forum_image'] . '" alt="' . $folder_alt . '" border="0" />' : $user->img($folder_image, $folder_alt),
+ 'FORUM_FOLDER_IMG' => ($row['forum_image']) ? '<img src="' . $phpbb_root_path . $row['forum_image'] . '" alt="' . $folder_alt . '" />' : $user->img($folder_image, $folder_alt),
'FORUM_NAME' => $row['forum_name'],
'FORUM_DESC' => $row['forum_desc'],
$l_post_click_count => $post_click_count,