Index: trunk/phase3/includes/FeedUtils.php |
— | — | @@ -124,7 +124,7 @@ |
125 | 125 | $wgLang->time( $timestamp ) ) ); |
126 | 126 | } |
127 | 127 | |
128 | | - if ( ( strlen( $diffText ) > $wgFeedDiffCutoff ) || ( $wgFeedDiffCutoff <= 0 ) ) { |
| 128 | + if ( $wgFeedDiffCutoff <= 0 || ( strlen( $diffText ) > $wgFeedDiffCutoff ) ) { |
129 | 129 | // Omit large diffs |
130 | 130 | $diffLink = $title->escapeFullUrl( |
131 | 131 | 'diff=' . $newid . |