From: Marcus Boerger Date: Thu, 14 Nov 2002 21:09:41 +0000 (+0000) Subject: Add magic_quotes_runtime support X-Git-Tag: BEFORE_RENAMING~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a14bc7685d6a3abb4860b15fe95a2ade41ccce4c;p=php Add magic_quotes_runtime support --- diff --git a/ext/dba/dba.c b/ext/dba/dba.c index 126319df6b..23679c065c 100644 --- a/ext/dba/dba.c +++ b/ext/dba/dba.c @@ -36,6 +36,7 @@ #include "php_dba.h" #include "ext/standard/info.h" +#include "ext/standard/php_string.h" #include "php_gdbm.h" #include "php_ndbm.h" @@ -613,6 +614,9 @@ PHP_FUNCTION(dba_fetch) php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Handler %s does not support optional skip parameter", info->hnd->name); } if((val = info->hnd->fetch(info, VALLEN(key), skip, &len TSRMLS_CC)) != NULL) { + if (val && PG(magic_quotes_runtime)) { + val = php_addslashes(val, len, &len, 1 TSRMLS_CC); + } RETURN_STRINGL(val, len, 0); } RETURN_FALSE; diff --git a/ext/dba/tests/dba008.phpt b/ext/dba/tests/dba008.phpt new file mode 100644 index 0000000000..a8bcafe809 --- /dev/null +++ b/ext/dba/tests/dba008.phpt @@ -0,0 +1,25 @@ +--TEST-- +DBA magic_quotes_runtime Test +--SKIPIF-- + +--FILE-- + +--EXPECTF-- +database handler: %s +string(1) """ +string(2) "\""