Commit: f051345e2bb5eb64b33590967ab11f7e4e8a2fc1 Author: Ben Ramsey <[email protected]> Mon, 6 Apr 2015 09:41:27 -0500 Parents: 4b1af5f2c67e77604fe2df4542120a761840a78d Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=f051345e2bb5eb64b33590967ab11f7e4e8a2fc1 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
