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

core:UserPassBase: Fix closing-tag when username is set.

Thanks to Ryan Panning for providing this fix.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3059 44740490-163a-0410-bde0-09ae8108e29a
parent cad913aa
No related branches found
No related tags found
No related merge requests found
...@@ -37,11 +37,12 @@ ...@@ -37,11 +37,12 @@
if (isset($this->data['username'])) { if (isset($this->data['username'])) {
echo 'value="' . htmlspecialchars($this->data['username']) . '"'; echo 'value="' . htmlspecialchars($this->data['username']) . '"';
} }
echo '/></td>'; echo '/>';
} }
?> ?>
</td>
<td style="padding: .4em;" rowspan="2"> <td style="padding: .4em;" rowspan="2">
<input type="submit" tabindex="3" value="<?php echo $this->t('login_button'); ?>" /> <input type="submit" tabindex="3" value="<?php echo $this->t('login_button'); ?>" />
......
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