Make WordPress Core


Ignore:
Timestamp:
05/11/2009 05:48:24 PM (16 years ago)
Author:
ryan
Message:

Set REQUEST to contain GET + POST. No cookies. fixes #8814

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r11265 r11268  
    4747
    4848unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
     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);
    4952
    5053/**
Note: See TracChangeset for help on using the changeset viewer.