Skip to content

Commit

Permalink
Change create account link text
Browse files Browse the repository at this point in the history
  • Loading branch information
borkweb committed Oct 3, 2019
1 parent 5724bb7 commit 220be23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/BootstrapMediaWikiTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ public function execute() {
<?php echo Linker::linkKnown( SpecialPage::getTitleFor( 'Userlogin' ), wfMessage( 'login' ), [ 'class' => 'nav-link' ] ); ?>
</li>
<?php if ( ! empty( $wgGroupPermissions['*']['createaccount'] ) ) : ?>
<li class="nav-item">
<?php echo Linker::linkKnown( SpecialPage::getTitleFor( 'CreateAccount' ), wfMessage( 'create' ), [ 'class' => 'nav-link' ] ); ?>
<li class="nav-item ml-4">
<?php echo Linker::linkKnown( SpecialPage::getTitleFor( 'CreateAccount' ), 'New user? Register here!', [ 'class' => 'nav-link' ] ); ?>
</li>
<?php endif; ?>
</ul>
Expand Down

0 comments on commit 220be23

Please sign in to comment.