From 58c13bd2a75e5b32c83a96d298b954c0e167457d Mon Sep 17 00:00:00 2001 From: 8chan Date: Wed, 3 Dec 2014 00:16:01 -0800 Subject: [PATCH] Better post.php allow_delete error msg --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 50c5c8bd..1a7c5da2 100644 --- a/post.php +++ b/post.php @@ -49,7 +49,7 @@ if (isset($_POST['delete'])) { // Check if deletion enabled if (!$config['allow_delete']) - error(_('Post deletion is not allowed!')); + error(_('Users are not allowed to delete their own posts on this board.')); if (empty($delete)) error($config['error']['nodelete']);