summaryrefslogtreecommitdiff
path: root/ext/wddx
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-27 10:16:41 +0000
committerZeev Suraski <zeev@php.net>2001-07-27 10:16:41 +0000
commitfe6f8712a439c8b5046a03bca9ce5ae8e75aa4f5 (patch)
treec7bc98cac58386828871aae860f90cac0ebdcf8f /ext/wddx
parent2c254ba762d9392a732d5793b5b193ee6e395f1c (diff)
downloadphp-git-fe6f8712a439c8b5046a03bca9ce5ae8e75aa4f5.tar.gz
- Get rid of ELS_*(), and use TSRMLS_*() instead.
- Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
Diffstat (limited to 'ext/wddx')
-rw-r--r--ext/wddx/wddx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c
index f1f9c27aa8..2149708fa8 100644
--- a/ext/wddx/wddx.c
+++ b/ext/wddx/wddx.c
@@ -641,7 +641,7 @@ static void php_wddx_add_var(wddx_packet *packet, zval *name_var)
{
zval **val;
HashTable *target_hash;
- ELS_FETCH();
+ TSRMLS_FETCH();
if (Z_TYPE_P(name_var) == IS_STRING)
{
@@ -783,7 +783,7 @@ static void php_wddx_pop_element(void *user_data, const char *name)
zend_class_entry *ce;
zval *obj;
zval *tmp;
- ELS_FETCH();
+ TSRMLS_FETCH();
if (stack->top == 0)
return;