[Rt-commit] r14213 - rt/branches/3.999-DANGEROUS/share/html/Admin/Users

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu Jul 17 08:44:55 EDT 2008


Author: sunnavy
Date: Thu Jul 17 08:44:55 2008
New Revision: 14213

Modified:
   rt/branches/3.999-DANGEROUS/share/html/Admin/Users/Modify.html

Log:
no is_password method

Modified: rt/branches/3.999-DANGEROUS/share/html/Admin/Users/Modify.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Admin/Users/Modify.html	(original)
+++ rt/branches/3.999-DANGEROUS/share/html/Admin/Users/Modify.html	Thu Jul 17 08:44:55 2008
@@ -367,7 +367,7 @@
     } elsif ( $Pass1 ne $Pass2 ) {
 	$password_not_set = 1;
         push @results, _("passwords do not match.");
-    } elsif ( $Pass1 eq $Pass2 and !$user_object->is_password($Pass1) ) {
+    } elsif ( $Pass1 eq $Pass2 and $user_object->password ne $Pass1 ) {
         my ($code, $msg) = $user_object->set_password($Pass1);
         push @results, _($msg);
 	$password_not_set = 1 unless $code;


More information about the Rt-commit mailing list