summaryrefslogtreecommitdiff
path: root/Zend/ChangeLog
diff options
context:
space:
mode:
author <changelog@php.net>2004-04-04 01:32:18 +0000
committer <changelog@php.net>2004-04-04 01:32:18 +0000
commit1ca4aca8fb97120c5175b9b2bf6e47abedd168e4 (patch)
tree29316f5077563050a2144b960906c634840e2957 /Zend/ChangeLog
parent8838b38fcbc90a74fb7c499d72813b559aad2101 (diff)
downloadphp-git-1ca4aca8fb97120c5175b9b2bf6e47abedd168e4.tar.gz
ChangeLog update
Diffstat (limited to 'Zend/ChangeLog')
-rw-r--r--Zend/ChangeLog26
1 files changed, 26 insertions, 0 deletions
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index 49fa16689d..b98c99836b 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,29 @@
+2004-04-03 Andi Gutmans <andi@zend.com>
+
+ * zend_builtin_functions.c:
+ Patch by Timm Friebe:
+ It changes
+ set_exception_handler() to accept the pseudo-type "callable" (instead of
+ a string referring to a global function).
+
+
+ Examples:
+ set_exception_handler('function_name');
+ set_exception_handler(array('class_name', 'static_method'));
+ set_exception_handler(array($instance, 'instance_method'));
+
+
+ This also makes set_exception_handler() more consistent with all the
+ other callback functionality, e.g. set_error_handler().
+
+ * zend_operators.c:
+ - Nuke more old junk
+
+ * zend.h
+ zend_operators.c
+ zend_operators.h:
+ - Nuke code which hasn't been in use for ages.
+
2004-04-01 Ilia Alshanetsky <ilia@prohost.org>
* zend_builtin_functions.c: