Completed
Push — master ( 2c047c...0ba3d6 )
by Kevin
41s
created
html/inc/account.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             tra("Must be at least %1 characters", $min_passwd_length),
98 98
             tra("Password")
99 99
         ),
100
-        "passwd", "", "password",'id="passwd"',passwd_visible_checkbox("passwd")
100
+        "passwd", "", "password", 'id="passwd"', passwd_visible_checkbox("passwd")
101 101
     );
102 102
     form_select(
103 103
         sprintf('<span title="%s">%s</span>',
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     }
126 126
     form_input_text($x, "email_addr");
127 127
     form_input_text(
128
-        tra("Password:").'<br><small><a href="get_passwd.php">' . tra("forgot password?") . "</a></small>",
128
+        tra("Password:").'<br><small><a href="get_passwd.php">'.tra("forgot password?")."</a></small>",
129 129
         "passwd",
130 130
         "",
131 131
         "password",
Please login to merge, or discard this patch.
html/user/edit_passwd_form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 page_head(tra("Change password"));
27 27
 
28 28
 form_start(secure_url_base()."edit_passwd_action.php", "post");
29
-form_input_text(tra("New password"), "passwd", "", "password",'id="passwd"',passwd_visible_checkbox("passwd"));
29
+form_input_text(tra("New password"), "passwd", "", "password", 'id="passwd"', passwd_visible_checkbox("passwd"));
30 30
 form_submit(tra("Change password"));
31 31
 form_end();
32 32
 page_tail();
Please login to merge, or discard this patch.