Index: trunk/extensions/AbuseFilter/Views/AbuseFilterViewList.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | |
16 | 16 | // Quick links |
17 | 17 | $wgOut->addWikiMsg( 'abusefilter-links' ); |
18 | | - $lists = array( 'tools', 'log' ); |
| 18 | + $lists = array( 'tools' ); |
19 | 19 | if ($this->canEdit()) |
20 | 20 | $lists[] = 'new'; |
21 | 21 | $links = ''; |
— | — | @@ -26,6 +26,7 @@ |
27 | 27 | $links .= Xml::tags( 'li', null, $link ) . "\n"; |
28 | 28 | } |
29 | 29 | $links .= Xml::tags( 'li', null, $sk->link( SpecialPage::getTitleFor( 'AbuseLog' ), wfMsg( 'abusefilter-loglink' ) ) ); |
| 30 | + $links .= Xml::tags( 'li', null, $sk->link( $this->getTitle( 'history' ), wfMsg( 'abusefilter-filter-log' ) ) ); |
30 | 31 | $links = Xml::tags( 'ul', null, $links ); |
31 | 32 | $wgOut->addHTML( $links ); |
32 | 33 | |