Skip to content
Snippets Groups Projects
Commit fa09d07e authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Make login links localized on frontpage

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1201 44740490-163a-0410-bde0-09ae8108e29a
parent c274f0e5
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,9 @@ $(document).ready(function() {
$this->includeAtTemplateBase('includes/header.php');
if ($this->data['isadmin']) {
echo '<p style="float: right">You are logged in as administrator</p>';
echo '<p style="float: right">' . $this->t('loggedin_as_admin') . '</p>';
} else {
echo '<p style="float: right"><a href="' . $this->data['loginurl'] . '">Log in as administrator</a></p>';
echo '<p style="float: right"><a href="' . $this->data['loginurl'] . '">' . $this->t('login_as_admin') . '</a></p>';
}
?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment