diff options
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++; |