diff options
author | Zeev Suraski <zeev@php.net> | 1999-09-04 13:18:59 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-09-04 13:18:59 +0000 |
commit | c12d4bc7d46654c526ba94f48ff49c88b2838a91 (patch) | |
tree | 97dacc1f998ce47567a79098c0b50a709e5f6628 /ext/sybase/sybase.c | |
parent | 6d4ab7372df97b2200a041a9e9fb093f92946797 (diff) | |
download | php-git-c12d4bc7d46654c526ba94f48ff49c88b2838a91.tar.gz |
*** empty log message ***
Diffstat (limited to 'ext/sybase/sybase.c')
-rw-r--r-- | ext/sybase/sybase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/sybase.c b/ext/sybase/sybase.c index c289fc5cc7..95a48562b7 100644 --- a/ext/sybase/sybase.c +++ b/ext/sybase/sybase.c @@ -926,7 +926,7 @@ static PHP_FUNCTION(sybase_fetch_hash) *tmp = result->data[result->cur_row][i]; pval_copy_constructor(tmp); if (PG(magic_quotes_runtime) && tmp->type == IS_STRING) { - tmp->value.str.val = _php3_addslashes(tmp->value.str.val,tmp->value.str.len,&tmp->value.str.len,1); + tmp->value.str.val = php_addslashes(tmp->value.str.val,tmp->value.str.len,&tmp->value.str.len,1); } zend_hash_index_update(return_value->value.ht, i, (void *) &tmp, sizeof(pval *), NULL); tmp->refcount++; |