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/pgsql/pgsql.c | |
parent | 6d4ab7372df97b2200a041a9e9fb093f92946797 (diff) | |
download | php-git-c12d4bc7d46654c526ba94f48ff49c88b2838a91.tar.gz |
*** empty log message ***
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 0a4088b27e..884eaf9441 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -923,7 +923,7 @@ static void php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type) int should_copy; if (PG(magic_quotes_runtime)) { - data = _php3_addslashes(element,element_len,&data_len,0); + data = php_addslashes(element,element_len,&data_len,0); should_copy = 0; } else { data = element; |