[Mpuls-commits] r239 - in waska/trunk: . waskaweb/controllers

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Feb 5 14:11:42 CET 2009


Author: torsten
Date: 2009-02-05 14:11:42 +0100 (Thu, 05 Feb 2009)
New Revision: 239

Modified:
   waska/trunk/ChangeLog.txt
   waska/trunk/waskaweb/controllers/administration.py
Log:
fixed issue 662


Modified: waska/trunk/ChangeLog.txt
===================================================================
--- waska/trunk/ChangeLog.txt	2009-02-05 12:03:12 UTC (rev 238)
+++ waska/trunk/ChangeLog.txt	2009-02-05 13:11:42 UTC (rev 239)
@@ -13,6 +13,11 @@
 
 	* waskaweb/i18n/de/LC_MESSAGES/waskaweb.po: Modfied version string
 
+	Fixed Issue 662:
+
+	* waskaweb/controllers/administration.py: Changed ordering of first
+	  and lastname
+
 2009-02-04	Torsten Irlaender  <torsten.irlaender at intevation.de>
 
 	Added new evalution adele stammblatt. 

Modified: waska/trunk/waskaweb/controllers/administration.py
===================================================================
--- waska/trunk/waskaweb/controllers/administration.py	2009-02-05 12:03:12 UTC (rev 238)
+++ waska/trunk/waskaweb/controllers/administration.py	2009-02-05 13:11:42 UTC (rev 239)
@@ -209,7 +209,7 @@
         else:
             c.context = "../main.mako" 
             c.confirm_for = RESET_PASSWORD_CONFIRM 
-            c.question = "%s %s, %s" % (RESET_PASSWORD_CONFIRM_QUESTION, c.uo.first_name, c.uo.last_name) 
+            c.question = "%s %s, %s" % (RESET_PASSWORD_CONFIRM_QUESTION, c.uo.last_name, c.uo.first_name) 
  
             c.url_yes = "/administration/resetUserPassword/%s/1" % id
             c.url_no  = "/administration/showUser/%s" % id



More information about the Mpuls-commits mailing list