Commit: c4930168184cfba9695d8d48c839610e494ec7af Author: Rasmus Lerdorf <[email protected]> Wed, 30 Oct 2013 15:56:33 -0700 Parents: 966a13442aa328b89a977dd4a056007f1e232d1f Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=c4930168184cfba9695d8d48c839610e494ec7af Log: No more 5_2 here Changed paths: M releases/index.php Diff: diff --git a/releases/index.php b/releases/index.php index 354e9e8..dc83cc5 100644 --- a/releases/index.php +++ b/releases/index.php @@ -5,8 +5,8 @@ include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc'; include_once $_SERVER["DOCUMENT_ROOT"] . "/include/branches.inc"; if (isset($_GET["serialize"])) { + $RELEASES[5][$PHP_5_4_VERSION]["date"] = $PHP_5_4_DATE; $RELEASES[5][$PHP_5_3_VERSION]["date"] = $PHP_5_3_DATE; - $RELEASES[5][$PHP_5_2_VERSION]["date"] = $PHP_5_2_DATE; $RELEASES = $RELEASES + $OLDRELEASES; if (isset($_GET["version"])) { @@ -24,7 +24,7 @@ if (isset($_GET["serialize"])) { $count = 1; /* check if other $RELEASES[$ver] are there */ - /* e.g., 5_2, 5_3, and 5_4 all exist and have a release */ + /* e.g., 5_3, 5_4, and 5_5 all exist and have a release */ while(($z = each($RELEASES[$ver])) && $count++ < $max) { $return[$z[0]] = $z[1]; } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
