avoid passwords going into <input> elements
matthewt [Sat, 9 Feb 2008 17:27:38 +0000 (17:27 +0000)]
lib/Reaction/UI/Widget/Field/Mutable/Password.pm

index c11a909..890770e 100644 (file)
@@ -7,6 +7,7 @@ class Password is 'Reaction::UI::Widget::Field::Mutable', which {
   around fragment widget {
     call_next;
     arg field_type => 'password';
+    arg field_value => ''; # no sending password to user. really.
   };
 
 };