Skip to content
Snippets Groups Projects
Commit 5afeda83 authored by Olav Morken's avatar Olav Morken
Browse files

openidProvider: Fix dictionary references.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2129 44740490-163a-0410-bde0-09ae8108e29a
parent 085215d8
No related branches found
No related tags found
No related merge requests found
......@@ -7,17 +7,17 @@ $this->includeAtTemplateBase('includes/header.php');
$params = array(
'%SITEURL%' => '<code>' . htmlspecialchars($this->data['trustRoot']) . '</code>',
);
echo('<p>' . $this->t('{openidProvider:op:confirm_question}', $params) . '</p>');
echo('<p>' . $this->t('{openidProvider:openidProvider:confirm_question}', $params) . '</p>');
?>
<form method="post" action="?">
<input type="hidden" name="StateID" value="<?php echo $this->data['StateID']; ?>" />
<input type="checkbox" name="TrustRemember" value="on" id="remember" />
<label for="TrustRemember"><?php echo($this->t('{openidProvider:op:remember}')); ?></label>
<label for="TrustRemember"><?php echo($this->t('{openidProvider:openidProvider:remember}')); ?></label>
<br />
<input type="submit" name="TrustYes" value="<?php echo($this->t('{openidProvider:op:confirm}')); ?>" />
<input type="submit" name="TrustNo" value="<?php echo($this->t('{openidProvider:op:notconfirm}')); ?>" />
<input type="submit" name="TrustYes" value="<?php echo($this->t('{openidProvider:openidProvider:confirm}')); ?>" />
<input type="submit" name="TrustNo" value="<?php echo($this->t('{openidProvider:openidProvider:notconfirm}')); ?>" />
</form>
</div>
......
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