changeset 246:cb34e3fafb33

Add extra parameter to stGetFormPasswordInput().
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 23 Nov 2013 23:38:04 +0200
parents bb96aef874a9
children 8945b78dd6b6
files msitegen.inc.php
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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." />";
 }