[TUTOS-devel] TUTOS2 user_new.tpl
Projects / CRM / PLM / Calendar / Tasks / SCRUM / Test / Inventory
                
                Brought to you by:
                
                    gokohnert
                    
                
            
            
        
        
        
    | 
     
      
      
      From: Carlo B. <ber...@li...> - 2005-06-09 13:27:05
      
     
   | 
Hi, I've found a typo in user_new.tpl which prevents the password 
inserted to be shown as asterisk.
I include a patch to correct this:
--- user_new.tpl.bak    Thu Jun  9 15:20:56 2005
+++ user_new.tpl        Thu Jun  9 15:21:49 2005
@@ -97,7 +97,7 @@
  <tr>
  <td class="desc">{$oldpw.label}</td>
  <td>
-  <input id="{$oldpw.id}" type="passwd" name="{$oldpw.name}"
+  <input id="{$oldpw.id}" type="password" name="{$oldpw.name}"
           size="20" maxlength="20" value="{$oldpw.value}">
  </td>
  </tr>
@@ -106,7 +106,7 @@
  <tr>
  <td class="desc">{$newpw.label}</td>
  <td>
-  <input id="{$newpw.id}" type="passwd" name="{$newpw.name}"
+  <input id="{$newpw.id}" type="password" name="{$newpw.name}"
           size="20" maxlength="20" value="{$newpw.value}">
  </td>
  </tr>
@@ -114,7 +114,7 @@
  <tr>
  <td class="desc">{$confirmpw.label}</td>
  <td>
-  <input id="{$confirmpw.id}" type="passwd" name="{$confirmpw.name}"
+  <input id="{$confirmpw.id}" type="password" name="{$confirmpw.name}"
           size="20" maxlength="20" value="{$confirmpw.value}">
  </td>
  </tr>
Regards,
  Carlo
 |