aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Object.pm
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-10 19:04:23 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-10 19:04:23 +0000
commitd88f18a05c2bb2536031f46a09a54e14341e73d4 (patch)
treef92d57bab283076a4bcc5acf2ce2610093d02f00 /lib/Reaction/UI/ViewPort/Object.pm
parent4653d65d9bbb9ab8f6550a78dc402a2bf9cadd52 (diff)
downloadreaction-d88f18a05c2bb2536031f46a09a54e14341e73d4.tar.gz
reaction-d88f18a05c2bb2536031f46a09a54e14341e73d4.zip
fix the parameter attributes goof re meta
Diffstat (limited to 'lib/Reaction/UI/ViewPort/Object.pm')
-rw-r--r--lib/Reaction/UI/ViewPort/Object.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Reaction/UI/ViewPort/Object.pm b/lib/Reaction/UI/ViewPort/Object.pm
index 5c56e90..7efbe15 100644
--- a/lib/Reaction/UI/ViewPort/Object.pm
+++ b/lib/Reaction/UI/ViewPort/Object.pm
@@ -58,7 +58,7 @@ class Object is 'Reaction::UI::ViewPort', which {
my %excluded = map { $_ => undef } @{ $self->excluded_fields };
#treat _$field_name as private and exclude fields with no reader
my @names = grep { $_ !~ /^_/ && !exists($excluded{$_})} map { $_->name }
- grep { defined $_->get_read_method } $self->model->meta->parameter_attributes;
+ grep { defined $_->get_read_method } $self->model->parameter_attributes;
return $self->sort_by_spec($self->field_order || [], \@names);
};