iliaa Mon Jan 17 19:30:39 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src NEWS
/ZendEngine2 zend_operators.h
Log:
MFH: Fixed bug #30726 (-.1 like numbers are not being handled correctly).
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.188&r2=1.1760.2.189&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.188 php-src/NEWS:1.1760.2.189
--- php-src/NEWS:1.1760.2.188 Mon Jan 17 12:21:56 2005
+++ php-src/NEWS Mon Jan 17 19:30:39 2005
@@ -29,6 +29,7 @@
y2k_compliance is On). (Ilia)
- Fixed bug #31055 (apache2filter: per request leak proportional to the full
path of the request URI). (kameshj at fastmail dot fm)
+- Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
- Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
- Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
parameters). (Jani)
http://cvs.php.net/diff.php/ZendEngine2/zend_operators.h?r1=1.88.2.4&r2=1.88.2.5&ty=u
Index: ZendEngine2/zend_operators.h
diff -u ZendEngine2/zend_operators.h:1.88.2.4
ZendEngine2/zend_operators.h:1.88.2.5
--- ZendEngine2/zend_operators.h:1.88.2.4 Wed Nov 3 18:14:32 2004
+++ ZendEngine2/zend_operators.h Mon Jan 17 19:30:39 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_operators.h,v 1.88.2.4 2004/11/03 23:14:32 derick Exp $ */
+/* $Id: zend_operators.h,v 1.88.2.5 2005/01/18 00:30:39 iliaa Exp $ */
#ifndef ZEND_OPERATORS_H
#define ZEND_OPERATORS_H
@@ -88,7 +88,7 @@
*lval = local_lval;
}
return IS_LONG;
- } else if (end_ptr_long == str && *end_ptr_long != '\0' && *str
!= '.') { /* ignore partial string matches */
+ } else if (end_ptr_long == str && *end_ptr_long != '\0' && *str
!= '.' && *str != '-') { /* ignore partial string matches */
return 0;
}
} else {
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|