| Mehdi Achour 2007-01-22, 8:04 am |
| didou Mon Jan 22 02:57:28 2007 UTC
Modified files:
/phpweb README_UPGRADE_51.php
Log:
Fix 39590: Document strtotime() change here as it breaks BC
http://cvs.php.net/viewvc.cgi/phpwe...4&diff_format=u
Index: phpweb/README_UPGRADE_51.php
diff -u phpweb/README_UPGRADE_51.php:1.3 phpweb/README_UPGRADE_51.php:1.4
--- phpweb/README_UPGRADE_51.php:1.3 Sun Sep 17 19:42:39 2006
+++ phpweb/README_UPGRADE_51.php Mon Jan 22 02:57:28 2007
@@ -1,5 +1,5 @@
<?php
-// $Id: README_UPGRADE_51.php,v 1.3 2006/09/17 19:42:39 bjori Exp $
+// $Id: README_UPGRADE_51.php,v 1.4 2007/01/22 02:57:28 didou Exp $
$_SERVER['BASE_PAGE'] = basename(__FILE__);
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header("UPGRADE NOTES - PHP 5.1");
@@ -509,6 +509,11 @@
<a href="http://www.php.net/manual/en/timezones.php">http://www.php.net/manual/en/timezones.php</a>.
</p>
+<p>
+Also note that <a href="http://www.php.net/strtotime">strtotime()</a> now
+returns FALSE on failure, instead of -1.
+</p>
+
<a name="db"></a><h2>11. Changes in database support</h2>
<a name="db1"></a><h3>11a. PDO overview</h3>
|