Make WordPress Core


Ignore:
Timestamp:
03/19/2010 09:15:00 PM (15 years ago)
Author:
nacin
Message:

Remove unnecessary ternary operators such as (expr) ? true : false.

File:
1 edited

Legend:

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

    r13733 r13769  
    19591959        unset($this->feed_structure);
    19601960        unset($this->comment_feed_structure);
    1961         $this->use_trailing_slashes = ( substr($this->permalink_structure, -1, 1) == '/' ) ? true : false;
     1961        $this->use_trailing_slashes = ( '/' == substr($this->permalink_structure, -1, 1) );
    19621962
    19631963        // Enable generic rules for pages if permalink structure doesn't begin with a wildcard.
Note: See TracChangeset for help on using the changeset viewer.