Changes between Initial Version and Version 1 of Ticket #18322, comment 38
- Timestamp:
- 04/23/2014 11:59:43 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18322, comment 38
initial v1 1 Please put in a constant or function that can be checked to determine when slashes are added. Otherwise there is no elegant way to work around this issue and the hole just gets deeper and deeper as everyone continues to blindly assume quotes are added. As it stands, I'm doing if(function_exists('wp_magic_quotes')) $gpc=true; else $gpc=false; 1 Please put in a constant or function that can be checked to determine when slashes are added. Otherwise there is no elegant way to work around this issue and the hole just gets deeper and deeper as everyone continues to blindly assume quotes are added. As it stands, I'm doing 2 {{{ 3 if(function_exists('wp_magic_quotes')) $gpc=true; else $gpc=false; 4 }}}