Php – get_magic_quotes_gpc going away, how to bulk update the code
I have thousands of instances of calls to get_magic_quotes_gpc. Since get_magic_quotes_gpc is going away, I found a recommendation to simply replace call with "false". Then the code: if (get_magic_quotes_gpc()) { $cell = stripslashes($cell); } would become: if (false) { $cell…