Commit: 6ada3eddd48d38804754982e4c418e129ccdfba0 Author: Anatol Belski <[email protected]> Sat, 20 Jan 2018 17:58:49 +0100 Parents: 951be7dbe8647d9c5546e2de4838ff382006e4a8 Branches: master
Link: http://git.php.net/?p=web/windows.git;a=commitdiff;h=6ada3eddd48d38804754982e4c418e129ccdfba0 Log: Switch the order so then 64-bit builds are shown first Changed paths: M docroot/listing.php Diff: diff --git a/docroot/listing.php b/docroot/listing.php index d6aef41..3e1967d 100644 --- a/docroot/listing.php +++ b/docroot/listing.php @@ -36,28 +36,28 @@ $versions = generate_listing($dir_to_parse, $snaps); $major_order = array('7.2', '7.1', '7.0', '5.6'); $minor_order = array( '5.6' => array( - 'nts-VC11-x86', - 'ts-VC11-x86', 'nts-VC11-x64', - 'ts-VC11-x64' + 'ts-VC11-x64', + 'nts-VC11-x86', + 'ts-VC11-x86' ), '7.0' => array( - 'nts-VC14-x86', - 'ts-VC14-x86', 'nts-VC14-x64', - 'ts-VC14-x64' + 'ts-VC14-x64', + 'nts-VC14-x86', + 'ts-VC14-x86' ), '7.1' => array( - 'nts-VC14-x86', - 'ts-VC14-x86', 'nts-VC14-x64', - 'ts-VC14-x64' + 'ts-VC14-x64', + 'nts-VC14-x86', + 'ts-VC14-x86' ), '7.2' => array( - 'nts-VC15-x86', - 'ts-VC15-x86', 'nts-VC15-x64', - 'ts-VC15-x64' + 'ts-VC15-x64', + 'nts-VC15-x86', + 'ts-VC15-x86' ), ); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
