From 9368638b54dedef89f85d7439c96b64fd7891adc Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sat, 19 Feb 2011 19:48:13 +1100 Subject: [PATCH] fixed a bug from the last commit --- post.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/post.php b/post.php index 5ec63032..e2e2f56a 100644 --- a/post.php +++ b/post.php @@ -282,16 +282,14 @@ error(sprintf($config['error']['fileexists'], $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'] . $board['dir'] . $config['dir']['res'] . - ($p->thread ? - $p->thread . '.html#' . $p->id + ($p['thread'] ? + $p['thread'] . '.html#' . $p['id'] : - $p->id . '.html' + $p['id'] . '.html' ) )); } - exit; - // Remove DIR_* before inserting them into the database. if($post['has_file']) { $post['file'] = substr_replace($post['file'], '', 0, strlen($board['dir'] . $config['dir']['img']));