|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-04 22:12 UTC] vrana@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 14:00:01 2025 UTC |
Description: ------------ I have found a bug on page security.magicquotes.disabling.html [chm date: 2005-07-31]...in Example 10.2. Disabling magic quotes at runtime This Code doesn't work properly because it doesn't updates the Super Global $_REQUEST, which also gets escaped when magic_quotes is enabled. I suggest adding just one line: $_REQUEST = array_map('stripslashes_deep', $_REQUEST);