aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm
diff options
context:
space:
mode:
authoredenc <edenc@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-30 17:24:56 +0000
committeredenc <edenc@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-30 17:24:56 +0000
commitd343ffacddd6357978db894d46c326f07beb48cb (patch)
tree8edd8d13ede1ebb55fee44bd45cad969b0f140cc /lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm
parente39fcb0616feffa05dfd725eb4cde04d2aba8962 (diff)
parent8a293e2eee23938229a7dbfb617faee579914dfc (diff)
downloadreaction-d343ffacddd6357978db894d46c326f07beb48cb.tar.gz
reaction-d343ffacddd6357978db894d46c326f07beb48cb.zip
r20384@hades (orig r523): wreis | 2008-01-26 12:21:51 -0300
added CheckNumber type constraint r20385@hades (orig r524): wreis | 2008-01-26 12:28:01 -0300 unquoted Reaction::Types r20386@hades (orig r525): wreis | 2008-01-26 12:29:08 -0300 fixed assertion for _build_fields_for_type_Str r20397@hades (orig r531): matthewt | 2008-01-29 04:39:49 -0300 better error reporting on reflection failure for Object viewport r20398@hades (orig r532): matthewt | 2008-01-29 04:40:51 -0300 refactored value string building r20399@hades (orig r533): matthewt | 2008-01-29 08:11:06 -0300 -Debug is -stupid- r20400@hades (orig r534): wreis | 2008-01-29 08:26:17 -0300 fixed DBIC types r20401@hades (orig r535): matthewt | 2008-01-29 08:35:18 -0300 container widget r20402@hades (orig r536): wreis | 2008-01-29 23:41:25 -0300 added _class_to_attribute_name method r20405@hades (orig r539): matthewt | 2008-01-30 13:33:10 -0300 first cut of Reaction::UI::Skin and SiteLayout VP+widget
Diffstat (limited to 'lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm')
-rw-r--r--lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm b/lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm
index 45cd652..ba1de50 100644
--- a/lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm
+++ b/lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm
@@ -28,7 +28,7 @@ class ChooseMany is 'Reaction::UI::ViewPort::Field', which {
$orig->($self, $checked);
};
- implements _build_value_string => as {
+ around _value_string_from_value => sub {
my $self = shift;
join ", ", (map {$self->obj_to_name($_->{value}) } @{ $self->current_value_choices })
};