Commit: a567f5d3113b2cb3d5519424dd7412d2f57a762c Author: Daniel Convissor <[email protected]> Thu, 2 Jan 2014 22:15:07 -0500 Parents: ed88ef438e7462319f469a9de010b6dc1dc82518 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=a567f5d3113b2cb3d5519424dd7412d2f57a762c Log: Clarify wording when blocking user comment. (Bug #66392) Bugs: https://bugs.php.net/66392 Changed paths: M www/bug.php Diff: diff --git a/www/bug.php b/www/bug.php index 52f98c2..c6186e7 100644 --- a/www/bug.php +++ b/www/bug.php @@ -149,8 +149,8 @@ if ($edit == 2 && !$show_bug_info && $pw && verify_bug_passwd($bug_id, bugs_get_ if (isset($_POST['ncomment'])) { /* Bugs blocked to user comments can only be commented by the team */ if ($bug['block_user_comment'] == 'Y' && $logged_in != 'developer') { - response_header('Add comment not allowed'); - display_bug_error("You're not allowed to add comment on bug #{$bug_id}"); + response_header('Adding comments not allowed'); + display_bug_error("You're not allowed to add a comment to bug #{$bug_id}"); response_footer(); exit; } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
