Commit: e58ec027783ac27abe4475d7b8138292f18e6653 Author: Peter Cowburn <sala...@php.net> Tue, 13 Nov 2012 15:05:10 +0000 Parents: cbd6d7efdfb1049d5f0dcf99893935d4dedbe3f7 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=e58ec027783ac27abe4475d7b8138292f18e6653 Log: fix RC variables (allowed values are string|false) Changed paths: M include/version.inc Diff: diff --git a/include/version.inc b/include/version.inc index eb4f8b7..8fd6b1a 100644 --- a/include/version.inc +++ b/include/version.inc @@ -17,7 +17,7 @@ */ /* PHP 5.4 Release */ -$PHP_5_4_RC = true; // set to false when there is no RC +$PHP_5_4_RC = '5.4.9RC1'; // set to false when there is no RC $PHP_5_4_RC_DATE = '08 Nov 2012'; $PHP_5_4_VERSION = "5.4.8"; @@ -29,7 +29,7 @@ $PHP_5_4_MD5 = array( ); /* PHP 5.3 Release */ -$PHP_5_3_RC = true; +$PHP_5_3_RC = '5.3.19RC1'; $PHP_5_3_RC_DATE = '08 Nov 2012'; $PHP_5_3_VERSION = "5.3.18"; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php