From 4be078ff863e133bf33ad9ffbef3a8af507cd638 Mon Sep 17 00:00:00 2001 From: efari Date: Wed, 26 Jan 2011 08:01:11 -0800 Subject: [PATCH] fixed a wrong url by using false, the url in the post number (in manage post mode) will point to the correct file --- inc/html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/html.php b/inc/html.php index a3c147a..e576eb9 100644 --- a/inc/html.php +++ b/inc/html.php @@ -488,7 +488,7 @@ function manageModeratePost($post) { $ban = banByIP($post['ip']); $ban_disabled = (!$ban && $isadmin) ? '' : ' disabled'; $ban_disabled_info = (!$ban) ? '' : (' A ban record already exists for ' . $post['ip']); - $post_html = buildPost($post, true); + $post_html = buildPost($post, false); $post_or_thread = ($post['parent'] == 0) ? 'Thread' : 'Post'; return <<