diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-10-12 09:13:04 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-10-12 09:13:04 +0000 |
commit | 98bd5b74f274925bd50aaefc894c3b4927d2ac1a (patch) | |
tree | f51c1a5bf4dadd070e489c814ab183e688f3ccbe /phpBB/includes/functions_display.php | |
parent | 7924d903b08967428656b2b53557063e55a15735 (diff) | |
download | forums-98bd5b74f274925bd50aaefc894c3b4927d2ac1a.tar forums-98bd5b74f274925bd50aaefc894c3b4927d2ac1a.tar.gz forums-98bd5b74f274925bd50aaefc894c3b4927d2ac1a.tar.bz2 forums-98bd5b74f274925bd50aaefc894c3b4927d2ac1a.tar.xz forums-98bd5b74f274925bd50aaefc894c3b4927d2ac1a.zip |
optimized update_last_post_information query.
git-svn-id: file:///svn/phpbb/trunk@4573 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 e48249bdfc..e9bbb0d5b4 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -321,7 +321,7 @@ function display_attachments($attachment_data, &$update_count, $force_physical = } else if ($extensions[$attachment['extension']]['upload_icon'] != '') { - $upload_image = '<img src="' . $phpbb_root_path . 'images/upload_icons/' . trim($extensions[$attachment['extension']]['upload_icon']) . '" alt="" border="0" />'; + $upload_image = '<img src="' . $phpbb_root_path . $config['upload_icons_path'] . '/' . trim($extensions[$attachment['extension']]['upload_icon']) . '" alt="" border="0" />'; } $filesize = $attachment['filesize']; |