Index: trunk/phase3/includes/logging/LogFormatter.php |
— | — | @@ -306,7 +306,7 @@ |
307 | 307 | $entry->getType(), |
308 | 308 | $entry->getSubtype(), |
309 | 309 | $entry->getTarget(), |
310 | | - $this->context->getUser()->getSkin(), |
| 310 | + $this->context->getSkin(), |
311 | 311 | (array)$entry->getParameters(), |
312 | 312 | true |
313 | 313 | ); |
Index: trunk/phase3/includes/specials/SpecialLog.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | $opts->setValue( 'month', '' ); |
66 | 66 | } |
67 | 67 | |
68 | | - if ( LogPage::isLogType( $opts->getValue( 'type' ) ) ) { |
| 68 | + if ( !LogPage::isLogType( $opts->getValue( 'type' ) ) ) { |
69 | 69 | $opts->setValue( 'type', '' ); |
70 | 70 | } |
71 | 71 | |