Commit: ffb9b8ff51e5accbb5af72655b6e0cd9403de21a Author: Adam Harvey <[email protected]> Thu, 20 Jun 2013 11:05:46 -0700 Parents: a586086991b3e209ab0f0e279c71516ab231f380 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=ffb9b8ff51e5accbb5af72655b6e0cd9403de21a Log: Fix bug #65073 (Grammatical error on PHP.net Website). Problem not persist. Bugs: https://bugs.php.net/65073 Changed paths: M include/errors.inc Diff: diff --git a/include/errors.inc b/include/errors.inc index 97d772f..1c756ef 100644 --- a/include/errors.inc +++ b/include/errors.inc @@ -30,7 +30,7 @@ function error_404_manual() "<p>The manual page you are looking for (<strong>" . htmlspecialchars(substr($MYSITE, 0, -1) . $_SERVER['REQUEST_URI']) . "</strong>) is not available on this server right now. " . - "Please check back later, or if the problem persist, " . + "Please check back later, or if the problem persists, " . "<a href=\"/contact.php\">contact the webmasters</a>.</p>\n"; site_footer(); exit; @@ -45,7 +45,7 @@ function error_noservice() "<p>The service you tried to access with <strong>" . htmlspecialchars(substr($MYSITE, 0, -1) . $_SERVER['REQUEST_URI']) . "</strong> is not available on this server right now. " . - "Please check back later, or if the problem persist, " . + "Please check back later, or if the problem persists, " . "<a href=\"/contact.php\">contact the webmasters</a>.</p>\n"; site_footer(); exit; @@ -57,7 +57,7 @@ function error_nomirror($mirror) { echo "<h1>No such mirror</h1>\n<p>The mirror you tried to access (" . htmlspecialchars($mirror) . ") is not registered php.net mirror. Please check back later," . - " or if the problem persist, " . + " or if the problem persists, " . "<a href=\"/contact.php\">contact the webmasters</a>.</p>\n"; site_footer(); exit; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
