diff options
author | deva <deva> | 2008-10-12 16:02:03 +0000 |
---|---|---|
committer | deva <deva> | 2008-10-12 16:02:03 +0000 |
commit | 28856d6f9b7d726b1681df9384f3ef000dbf6f4c (patch) | |
tree | 4297943b1d5656ee2b0c01d3aabac5ddb414d45d /forum/htdocs/index.php | |
parent | ed97119bc3a7203b11d92cf170869a12bd2da953 (diff) |
Made file preview (original image or png with filename as text). Added error image as png with error text.
Diffstat (limited to 'forum/htdocs/index.php')
-rw-r--r-- | forum/htdocs/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php index 99169ab..ab63d9b 100644 --- a/forum/htdocs/index.php +++ b/forum/htdocs/index.php @@ -17,7 +17,8 @@ if($current_user) { case "file": include_once($UTIL_DIR. "/file.php"); - getFile($fid); + if($preview) getFilePreview($fid); + else getFile($fid); return; } } |