| @@ -53,9 +53,9 @@ | ||
| 53 | 53 | |
| 54 | 54 | // Now if we are supposed to look for ultimate source data (e.g. from |
| 55 | 55 | // <atom:source> ... </atom:source> elements), do so here. |
| 56 | 56 | if ($params['unproxy']) : |
| 57 | - if ( !is_string($params['unproxied setting'])) : | |
| 57 | + if (!is_string($params['unproxied setting'])) : | |
| 58 | 58 | // Default pattern for unproxied settings: {$name}_original |
| 59 | 59 | $params['unproxied setting'] = $what . '_original'; |
| 60 | 60 | endif; |
| 61 | 61 | |
| @@ -72,9 +72,9 @@ | ||
| 72 | 72 | |
| 73 | 73 | // -=-=-= 3. DEAL WITH THE RESULTS, IF ANY, OR FALLBACK VALUES. =-=-=- |
| 74 | 74 | |
| 75 | 75 | // If we have results now, cool. Just pass them back. |
| 76 | - if ( !empty($results)) : | |
| 76 | + if (!empty($results)) : | |
| 77 | 77 | $ret = ($params['single'] ? $results[0] : $results); |
| 78 | 78 | |
| 79 | 79 | // If we got no results but we have a fallback global setting, cool. Use |
| 80 | 80 | // that. Jam it into a singleton array for queries expecting an array of |
| @@ -93,9 +93,9 @@ | ||
| 93 | 93 | return $ret; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | public function is_syndicated () { |
| 97 | - return ( !is_null($this->feed_id(/*single=*/ false))); | |
| 97 | + return (!is_null($this->feed_id(/*single=*/ false))); | |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | public function syndication_permalink () { |
| 101 | 101 | return $this->meta('syndication_permalink'); |
| @@ -145,9 +145,9 @@ | ||
| 145 | 145 | |
| 146 | 146 | public function is_exposed_to_formatting_filters () { |
| 147 | 147 | |
| 148 | 148 | return ( |
| 149 | - ! $this->is_syndicated() | |
| 149 | + !$this->is_syndicated() | |
| 150 | 150 | or ( |
| 151 | 151 | 'yes' == $this->meta( |
| 152 | 152 | '_feedwordpress_formatting_filters', |
| 153 | 153 | array( |