mirror of
https://github.com/php/php-src.git
synced 2026-03-31 12:42:29 +02:00
Merge commit 'refs/pull/12/head' of git://github.com/php/php-src into 5.3 Signed-off-by: Gustavo André dos Santos Lopes <cataphract@php.net>
12 lines
223 B
PHP
12 lines
223 B
PHP
--TEST--
|
|
Bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)
|
|
--INI--
|
|
error_reporting=E_ALL & ~E_DEPRECATED
|
|
magic_quotes_gpc=On
|
|
--FILE--
|
|
<?php
|
|
var_dump(ini_get("magic_quotes_gpc"));
|
|
?>
|
|
--EXPECT--
|
|
string(1) "1"
|