[evolvis-commits] r6768: fix programming error (wrong parenthesis nesting) ↵

mirabilos at evolvis.org mirabilos at evolvis.org
Wed Jun 30 13:29:27 CEST 2010


Author: mirabilos
Date: 2010-06-30 13:29:27 +0200 (Wed, 30 Jun 2010)
New Revision: 6768

Modified:
   trunk/gforge_base/evolvisforge/gforge/www/account/lostlogin.php
Log:
fix programming error (wrong parenthesis nesting)


Modified: trunk/gforge_base/evolvisforge/gforge/www/account/lostlogin.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/account/lostlogin.php	2010-06-28 12:48:50 UTC (rev 6767)
+++ trunk/gforge_base/evolvisforge/gforge/www/account/lostlogin.php	2010-06-30 11:29:27 UTC (rev 6768)
@@ -83,8 +83,8 @@
 		$u->setNewEmailAndHash('', 0);
 
 		$HTML->header(array('title'=>"Password changed"));
-		printf (_('<h2>Password changed</h2><p>Congratulations, you have re-set your account password. You may <a href="%1$s">login</a> to the site now.</p>',
-			  util_make_url ("/account/login.php")));
+		printf (_('<h2>Password changed</h2><p>Congratulations, you have re-set your account password. You may <a href="%1$s">login</a> to the site now.</p>'),
+			  util_make_url ("/account/login.php"));
 		$HTML->footer(array());
 		exit();
 	}



More information about the evolvis-commits mailing list