Sterne in das Passwort-feld, aber nur wenn PW auch gesetzt
bernd

bernd commited on 2008-02-02 15:09:17
Zeige 1 geänderte Dateien mit 5 Einfügungen und 2 Löschungen.


git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@930 87cf0b9e-d624-0410-a070-f6ee81989793
... ...
@@ -69,13 +69,16 @@ $form = "
69 69
     <p><strong>E-Mail-Adresse:</strong>&#160;<input type=\"text\" name=\"local\" id=\"local\" size=\"10\" value=\"{$account['local']}\" /><strong style=\"font-size: 1.5em;\">&#160;@&#160;</strong>".domainselect($account['domainid'])."</p>";
70 70
 
71 71
 $password_message = '';
72
+$password_value = '';
72 73
 if ($is_mailbox and ($account['password'] != ''))
74
+{
73 75
   $password_message = '<span style="font-size: 80%"><br /><em>Sie haben bereits ein Passwort gesetzt. Wenn Sie dieses Feld leer lassen, wird das bisherige Passwort beibehalten.</em></span>';
74
-  
76
+  $password_value = '**********';
77
+} 
75 78
 
76 79
 $form .= "
77 80
     <p><input type=\"checkbox\" id=\"mailbox\" name=\"mailbox\" value=\"yes\" ".($is_mailbox ? 'checked="checked" ' : '')." /><label for=\"mailbox\">&#160;In Mailbox speichern</label></p>
78
-    <p style=\"margin-left: 2em;\" id=\"mailbox_options\">Passwort für Abruf:&#160;<input type=\"password\" id=\"password\" name=\"password\" value=\"**********\" />{$password_message}</p>";
81
+    <p style=\"margin-left: 2em;\" id=\"mailbox_options\">Passwort für Abruf:&#160;<input type=\"password\" id=\"password\" name=\"password\" value=\"{$password_value}\" />{$password_message}</p>";
79 82
 
80 83
 
81 84
 $form .= "
82 85