[Rt-commit] r7974 - in rt/branches/3.7-EXPERIMENTAL: .
html/Elements html/SelfService html/User
jesse at bestpractical.com
jesse at bestpractical.com
Sun Jun 3 15:37:47 EDT 2007
Author: jesse
Date: Sun Jun 3 15:37:47 2007
New Revision: 7974
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/html/Admin/Users/Modify.html
rt/branches/3.7-EXPERIMENTAL/html/Elements/Login
rt/branches/3.7-EXPERIMENTAL/html/Elements/SelectOwner
rt/branches/3.7-EXPERIMENTAL/html/SelfService/Prefs.html
rt/branches/3.7-EXPERIMENTAL/html/User/Prefs.html
Log:
r57892 at pinglin: jesse | 2007-06-03 15:34:38 -0400
* Add autocomplete=off to password dialgos
Modified: rt/branches/3.7-EXPERIMENTAL/html/Admin/Users/Modify.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/Admin/Users/Modify.html (original)
+++ rt/branches/3.7-EXPERIMENTAL/html/Admin/Users/Modify.html Sun Jun 3 15:37:47 2007
@@ -121,14 +121,14 @@
<&|/l&>New Password</&>:
</td>
<td align="left">
-<input type="password" name="Pass1" />
+<input type="password" name="Pass1" autocomplete="off" />
</td>
</tr>
<tr><td align="right">
<&|/l&>Retype Password</&>:
</td>
<td>
-<input type="password" name="Pass2" />
+<input type="password" name="Pass2" autocomplete="off" />
</td>
</tr>
</table>
Modified: rt/branches/3.7-EXPERIMENTAL/html/Elements/Login
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/Elements/Login (original)
+++ rt/branches/3.7-EXPERIMENTAL/html/Elements/Login Sun Jun 3 15:37:47 2007
@@ -96,7 +96,7 @@
<div class="input-row">
<span class="label"><&|/l&>Password</&>:</span>
- <span class="input"><input type="password" name="pass" /></span>
+ <span class="input"><input type="password" name="pass" autocomplete="off" /></span>
</div>
<div class="button-row">
Modified: rt/branches/3.7-EXPERIMENTAL/html/Elements/SelectOwner
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/Elements/SelectOwner (original)
+++ rt/branches/3.7-EXPERIMENTAL/html/Elements/SelectOwner Sun Jun 3 15:37:47 2007
@@ -80,6 +80,7 @@
my %user_uniq_hash;
+$m->callback( %ARGS, objects => \@objects, CallbackName => 'UpdateObjectList');
foreach my $object (@objects) {
my $Users = RT::Users->new($session{CurrentUser});
Modified: rt/branches/3.7-EXPERIMENTAL/html/SelfService/Prefs.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/SelfService/Prefs.html (original)
+++ rt/branches/3.7-EXPERIMENTAL/html/SelfService/Prefs.html Sun Jun 3 15:37:47 2007
@@ -52,8 +52,8 @@
% unless (RT->Config->Get('WebExternalAuth') and !RT->Config->Get('WebFallbackToInternalAuth')) {
<&| /Widgets/TitleBox, title => loc('Change password') &>
-<&|/l&>New password</&>: <input type="password" name="NewPass1" size="16" />
-<&|/l&>Confirm</&>: <input type="password" name="NewPass2" size="16" />
+<&|/l&>New password</&>: <input type="password" name="NewPass1" size="16" autocomplete="off" />
+<&|/l&>Confirm</&>: <input type="password" name="NewPass2" size="16" autocomplete="off" />
</&>
<br />
% }
Modified: rt/branches/3.7-EXPERIMENTAL/html/User/Prefs.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/User/Prefs.html (original)
+++ rt/branches/3.7-EXPERIMENTAL/html/User/Prefs.html Sun Jun 3 15:37:47 2007
@@ -111,14 +111,14 @@
<&|/l&>New Password</&>:
</td>
<td class="value">
-<input type="password" name="Pass1" />
+<input type="password" name="Pass1" autocomplete="off"/>
</td>
</tr>
<tr><td class="label">
<&|/l&>Retype Password</&>:
</td>
<td class="value">
-<input type="password" name="Pass2" />
+<input type="password" name="Pass2" autocomplete="off" />
</td>
</tr>
</table>
More information about the Rt-commit
mailing list