Changeset 46105 for trunk/src/wp-includes/load.php
- Timestamp:
- 09/13/2019 10:19:34 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r45932 r46105 926 926 */ 927 927 function wp_magic_quotes() { 928 // If already slashed, strip.929 if ( get_magic_quotes_gpc() ) {930 $_GET = stripslashes_deep( $_GET );931 $_POST = stripslashes_deep( $_POST );932 $_COOKIE = stripslashes_deep( $_COOKIE );933 }934 935 928 // Escape with wpdb. 936 929 $_GET = add_magic_quotes( $_GET );
Note: See TracChangeset
for help on using the changeset viewer.