Changeset 13240 for trunk/wp-includes/formatting.php
- Timestamp:
- 02/20/2010 12:50:29 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r13197 r13240 1209 1209 */ 1210 1210 function addslashes_gpc($gpc) { 1211 global $wpdb; 1212 1213 if (get_magic_quotes_gpc()) { 1211 if ( get_magic_quotes_gpc() ) 1214 1212 $gpc = stripslashes($gpc); 1215 }1216 1213 1217 1214 return esc_sql($gpc);
Note: See TracChangeset
for help on using the changeset viewer.