[Jifty-commit] r1588 - jifty/branches/moose/lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sat Jul 15 02:10:35 EDT 2006


Author: audreyt
Date: Sat Jul 15 02:10:34 2006
New Revision: 1588

Modified:
   jifty/branches/moose/lib/Jifty/Notification.pm

Log:
* fix type constraint: "to" is not Str

Modified: jifty/branches/moose/lib/Jifty/Notification.pm
==============================================================================
--- jifty/branches/moose/lib/Jifty/Notification.pm	(original)
+++ jifty/branches/moose/lib/Jifty/Notification.pm	Sat Jul 15 02:10:34 2006
@@ -14,7 +14,7 @@
 has footer      => qw( is rw isa Str );
 has subject     => qw( is rw isa Str );
 has from        => qw( is rw isa Str );
-has to          => qw( is rw isa Str );
+has to          => qw( is rw isa Any ); # Object to deliver to
 has _recipients => qw( is rw isa ArrayRef );
 has _to_list    => qw( is rw isa ArrayRef );
 no Moose;


More information about the Jifty-commit mailing list