bjori Wed Jun 10 13:43:43 2009 UTC
Modified files:
/php-src/ext/spl spl_observer.c
Log:
Fix exception message
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/spl_observer.c?r1=1.35&r2=1.36&diff_format=u
Index: php-src/ext/spl/spl_observer.c
diff -u php-src/ext/spl/spl_observer.c:1.35 php-src/ext/spl/spl_observer.c:1.36
--- php-src/ext/spl/spl_observer.c:1.35 Thu Mar 26 20:02:12 2009
+++ php-src/ext/spl/spl_observer.c Wed Jun 10 13:43:43 2009
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: spl_observer.c,v 1.35 2009/03/26 20:02:12 felipe Exp $ */
+/* $Id: spl_observer.c,v 1.36 2009/06/10 13:43:43 bjori Exp $ */
#ifdef HAVE_CONFIG_H
# include "config.h"
@@ -596,7 +596,7 @@
}
if (buf_len == 0) {
- zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0
TSRMLS_CC, "Empty serialized string cannot be empty");
+ zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0
TSRMLS_CC, "Serialized string cannot be empty");
return;
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php