From d6680e300d106f79b20285850b79525de6cbdfcd Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 16 Oct 2008 11:35:43 +0000 Subject: [PATCH] ENHANCEMENT Added ID to allow CSS styling of forgot password link on MemberLoginForm git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64408 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- security/MemberLoginForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/MemberLoginForm.php b/security/MemberLoginForm.php index 04f0d7469..884f077be 100644 --- a/security/MemberLoginForm.php +++ b/security/MemberLoginForm.php @@ -66,7 +66,7 @@ class MemberLoginForm extends LoginForm { if(!$actions) { $actions = new FieldSet( new FormAction('dologin', _t('Member.BUTTONLOGIN', "Log in")), - new LiteralField('forgotPassword', '

' . _t('Member.BUTTONLOSTPASSWORD', "I've lost my password") . '

') + new LiteralField('forgotPassword', '

' . _t('Member.BUTTONLOSTPASSWORD', "I've lost my password") . '

') ); } }