Ticket #10360: 10360.diff
File 10360.diff, 894 bytes (added by , 16 years ago) |
---|
-
wp-settings.php
47 47 48 48 unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate ); 49 49 50 // Force REQUEST to be GET + POST. If SERVER, COOKIE, or ENV are needed, use those superglobals directly.51 $_REQUEST = array_merge($_GET, $_POST);52 53 50 /** 54 51 * The $blog_id global, which you can change in the config allows you to create a simple 55 52 * multiple blog installation using just one WordPress and changing $blog_id around. … … 599 596 $_COOKIE = add_magic_quotes($_COOKIE); 600 597 $_SERVER = add_magic_quotes($_SERVER); 601 598 599 // Force REQUEST to be GET + POST. If SERVER, COOKIE, or ENV are needed, use those superglobals directly. 600 $_REQUEST = array_merge($_GET, $_POST); 601 602 602 do_action('sanitize_comment_cookies'); 603 603 604 604 /**