Make WordPress Core

Changeset 8693


Ignore:
Timestamp:
08/20/2008 10:01:44 PM (16 years ago)
Author:
ryan
Message:

Check if not empty rather than isset. fixes #7553 see #7552

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit.php

    r8682 r8693  
    1111
    1212// Handle bulk actions
    13 if ( isset($_GET['action']) && $_GET['action'] != 'Actions' ) {
     13if ( !empty($_GET['action']) && $_GET['action'] != 'Actions' ) {
     14    echo "Ation is " . $_GET['action'];
    1415    switch ( $_GET['action'] ) {
    1516        case 'delete':
Note: See TracChangeset for help on using the changeset viewer.