Skip to:
Content

bbPress.org

Changeset 4770


Ignore:
Timestamp:
02/19/2013 12:16:17 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Bail out of converter if there is no request method. Fixes #2113.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/admin/converter.php

    r4707 r4770  
    2626     */
    2727    public function __construct() {
     28
     29        // "I wonder where I'll float next."
     30        if ( empty( $_SERVER['REQUEST_METHOD'] ) )
     31            return;
    2832
    2933        // Bail if request is not correct
Note: See TracChangeset for help on using the changeset viewer.