diff options
Diffstat (limited to 'forum/htdocs')
-rw-r--r-- | forum/htdocs/config.php.defaults | 2 | ||||
-rw-r--r-- | forum/htdocs/index.php | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/forum/htdocs/config.php.defaults b/forum/htdocs/config.php.defaults index 51f7f4e..7f0d643 100644 --- a/forum/htdocs/config.php.defaults +++ b/forum/htdocs/config.php.defaults @@ -6,5 +6,5 @@ $ADMIN_TIMEOUT = 100000; $PERMSTORE = $DATA_DIR . "/files"; $IMAGECACHE = $DATA_DIR . "/imagecache"; $LOG_FILE = $DATA_DIR . "/forum.log"; -$FILE_MAX_SIZE = 5*1024*1024; // 5kb +$FILE_MAX_SIZE = 5*1024; // 5kb ?> 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; } } |