Revision: 3059
Author: olavmrk
Date: Thu Mar 29 02:02:29 2012
Log: core:UserPassBase: Fix closing-tag when username is set.
Thanks to Ryan Panning for providing this fix.
http://code.google.com/p/simplesamlphp/source/detail?r=3059
Modified:
/trunk/templates/login.php
=======================================
--- /trunk/templates/login.php Thu May 26 03:40:00 2011
+++ /trunk/templates/login.php Thu Mar 29 02:02:29 2012
@@ -37,11 +37,12 @@
if (isset($this->data['username'])) {
echo 'value="' .
htmlspecialchars($this->data['username']) . '"';
}
- echo '/></td>';
+ echo '/>';
}
?>
+ </td>
<td style="padding: .4em;" rowspan="2">
<input type="submit" tabindex="3" value="<?php echo
$this->t('login_button'); ?>" />
--
You received this message because you are subscribed to the Google Groups
"simpleSAMLphp commits" group.
To post to this group, send email to simplesamlphp-commits@googlegroups.com.
To unsubscribe from this group, send email to
simplesamlphp-commits+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/simplesamlphp-commits?hl=en.