diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 21:13:15 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 21:13:15 +0000 |
commit | 66f5e500504db274a87d1e8fb41f745e1e484cca (patch) | |
tree | 8faaaac47d26b4126a91cd45e4ad396247680807 /ext/mssql | |
parent | 2d0b84ee3021e171007fe2f35043c012580483cf (diff) | |
download | php-git-66f5e500504db274a87d1e8fb41f745e1e484cca.tar.gz |
More cleanup...
Diffstat (limited to 'ext/mssql')
-rw-r--r-- | ext/mssql/php_mssql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 4da3a3677a..a961ac4cba 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -982,7 +982,7 @@ static void php_mssql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS) 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), (void **) &pvalue_ptr); zend_hash_pointer_update(return_value->value.ht, result->fields[i].name, strlen(result->fields[i].name)+1, pvalue_ptr); |