Make WordPress Core

Ticket #8814: 8814.2.diff

File 8814.2.diff, 545 bytes (added by ryan, 16 years ago)
  • wp-settings.php

     
    4747
    4848unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
    4949
     50function wp_register_REQUEST() {
     51        $_REQUEST = array_merge($_GET, $_POST);
     52}
     53
     54wp_register_REQUEST();
     55
    5056/**
    5157 * The $blog_id global, which you can change in the config allows you to create a simple
    5258 * multiple blog installation using just one WordPress and changing $blog_id around.