Commit: 4d9bf3e0b4afba670428851b009364b13b762b4d Author: Adam Harvey <[email protected]> Thu, 20 Jun 2013 11:05:46 -0700 Parents: 6f069735a37e9791e032f71d5894da28857cc1d7 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=4d9bf3e0b4afba670428851b009364b13b762b4d 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
