Commit: 6e3fac0e771a4772732d6dac11c84a62ed278c42 Author: Peter Cowburn <[email protected]> Wed, 20 Mar 2019 20:07:20 +0000 Parents: fbb560f0dcdab16480fea8d35b4bde788aedebe4 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=6e3fac0e771a4772732d6dac11c84a62ed278c42 Log: stop looking for PHP 5 in releases feed (bug #77774) PHP 5 was removed from $RELEASES in b8b8f3dfa0. Keep the multiple versions code in the feed (commented out) for when PHP 8 comes along. Bugs: https://bugs.php.net/77774 Changed paths: M releases/feed.php Diff: diff --git a/releases/feed.php b/releases/feed.php index afdeb58..de41bfb 100644 --- a/releases/feed.php +++ b/releases/feed.php @@ -21,7 +21,8 @@ XML; /* FIX silly editor highlighting */?><?php $FEED_UPDATED = 0; -$RELEASED_VERSIONS = array_merge($RELEASES[5], $RELEASES[7]); +// $RELEASED_VERSIONS = array_merge($RELEASES[5], $RELEASES[7]); +$RELEASED_VERSIONS = $RELEASES[7]; krsort($RELEASED_VERSIONS); foreach ($RELEASED_VERSIONS as $version => $release) { $published = date(DATE_ATOM, strtotime($release["source"][0]["date"])); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
