Make WordPress Core


Ignore:
Timestamp:
10/01/2012 02:26:45 PM (12 years ago)
Author:
ryan
Message:

Revert stowaway in [22087]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r22087 r22088  
    264264        elseif ( 'approve' == $status )
    265265            $approved = "comment_approved = '1'";
    266         elseif ( 'all' == $status )
    267             $approved = "( comment_approved = '0' OR comment_approved = '1' )";
    268         elseif ( 'full' == $status )
    269             $approved = '0 = 0';
    270266        elseif ( ! empty( $status ) )
    271267            $approved = $wpdb->prepare( "comment_approved = %s", $status );
Note: See TracChangeset for help on using the changeset viewer.