From 757da1eed5ffbc1c5a0ae07e82ae91f7e431f1a2 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 7 Mar 2005 22:23:14 +0000 Subject: - New Interface Serializeable - Change signature of unserialize() callback to ease inheritance and support code reuse of handlers --- Zend/zend_compile.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Zend/zend_compile.c') diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 3309608b51..a2741faa42 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3848,6 +3848,8 @@ ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify ce->module = NULL; ce->serialize = NULL; ce->unserialize = NULL; + ce->serialize_func = NULL; + ce->unserialize_func = NULL; } } -- cgit v1.2.1