From:             php dot 20 dot korkman at spamgourmet dot com
Operating system: SuSE Linux 9.0
PHP version:      5.2.0
PHP Bug Type:     Strings related
Bug description:  Double applied magic quotes

Description:
------------
parse_str() changed behaviour from PHP 5.14 to 5.2 in that it seems to
apply the magic_quotes_gpc directive *twice*. Needless to say this causes
heavy problems when using this function.


Reproduce code:
---------------
<?php
$arr = array();
parse_str("this=%22probably+a+bug%22", $arr);
echo $arr['this'];
?>

Expected result:
----------------
\"probably a bug\"

Actual result:
--------------
\\\"probably a bug\\\"

-- 
Edit bug report at http://bugs.php.net/?id=39763&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=39763&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=39763&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=39763&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=39763&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=39763&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=39763&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=39763&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=39763&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=39763&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=39763&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=39763&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=39763&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=39763&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=39763&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=39763&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=39763&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=39763&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=39763&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=39763&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=39763&r=mysqlcfg

Reply via email to