diff msitegen.inc.php @ 246:cb34e3fafb33

Add extra parameter to stGetFormPasswordInput().
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 23 Nov 2013 23:38:04 +0200
parents 70c424d025d6
children ce30a9083b40
line wrap: on
line diff
--- a/msitegen.inc.php	Fri Nov 22 15:58:17 2013 +0200
+++ b/msitegen.inc.php	Sat Nov 23 23:38:04 2013 +0200
@@ -209,10 +209,10 @@
 }
 
 
-function stGetFormPasswordInput($name, $id, $prefix)
+function stGetFormPasswordInput($name, $id, $prefix, $extra = "")
 {
   return
-    "<input type=\"password\" ".stGetIDName($name, $id, $prefix)." />";
+    "<input type=\"password\" ".stGetIDName($name, $id, $prefix)." ".$extra." />";
 }