Skip to content

Commit

Permalink
replace hardcoded url, fixes #128
Browse files Browse the repository at this point in the history
  • Loading branch information
thaider committed Jan 27, 2019
1 parent a3a3392 commit e00d1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/TweekiTemplate.php
Expand Up @@ -333,7 +333,7 @@ protected function renderNavigation( $elements ) {
$divideditems[] = [];
$divideditems['recent'] = [
'text' => wfMessage( 'recentchanges' )->plain(),
'href' => '/wiki/Special:RecentChanges',
'href' => Title::newFromText( 'Special:RecentChanges' )->getLocalURL(),
'id' => 't-recentchanges',
];
return [[
Expand Down

0 comments on commit e00d1b3

Please sign in to comment.