Commit: 2c6ec6c054499b26d76ded4f34974a5a5217c40b Author: Ben Ramsey <[email protected]> Mon, 6 Apr 2015 09:41:27 -0500 Parents: 5cf9f47d6893074ac7442c77f7b786649eeb761f Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=2c6ec6c054499b26d76ded4f34974a5a5217c40b Log: Remove $PHP_5_3_* variables causing notices These variables were removed in 470fc09f31, since 5.3 is no longer an active release. Changed paths: M releases/index.php Diff: diff --git a/releases/index.php b/releases/index.php index c5eb3f7..6172046 100644 --- a/releases/index.php +++ b/releases/index.php @@ -7,7 +7,6 @@ include_once $_SERVER["DOCUMENT_ROOT"] . "/include/branches.inc"; if (isset($_GET["serialize"])) { header('Content-type: text/plain'); $RELEASES[5][$PHP_5_4_VERSION]["date"] = $PHP_5_4_DATE; - $RELEASES[5][$PHP_5_3_VERSION]["date"] = $PHP_5_3_DATE; $RELEASES = $RELEASES + $OLDRELEASES; if (isset($_GET["version"])) { @@ -61,7 +60,6 @@ if (isset($_GET["serialize"])) { if (isset($_GET["json"])) { header('Content-Type: application/json'); $RELEASES[5][$PHP_5_4_VERSION]["date"] = $PHP_5_4_DATE; - $RELEASES[5][$PHP_5_3_VERSION]["date"] = $PHP_5_3_DATE; $RELEASES = $RELEASES + $OLDRELEASES; if (isset($_GET["version"])) { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
