Index: trunk/phase3/includes/RecentChange.php |
— | — | @@ -471,7 +471,7 @@ |
472 | 472 | { |
473 | 473 | global $wgLogRestrictions; |
474 | 474 | # Don't add private logs to RC! |
475 | | - if( isset($wgLogRestrictions[$type]) && !$wgLogRestrictions[$type] == '*' ) { |
| 475 | + if( isset($wgLogRestrictions[$type]) && $wgLogRestrictions[$type] != '*' ) { |
476 | 476 | return false; |
477 | 477 | } |
478 | 478 | $rc = self::newLogEntry( $timestamp, $title, $user, $actionComment, $ip, $type, $action, |