X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FDBIC%2FAPI.pm;h=acc8722ff767869ef2f12a25a9bab266f881df3a;hb=02b625cd434826ea7cc013dcd7a2a2eda1eb8476;hp=229237d28ec7b7a470c5f8cd2be1c31ea8a0e854;hpb=2abdb8310c404d431fd1f229cc231237b5b93bb8;p=catagits%2FCatalyst-Controller-DBIC-API.git diff --git a/lib/Catalyst/Controller/DBIC/API.pm b/lib/Catalyst/Controller/DBIC/API.pm index 229237d..acc8722 100644 --- a/lib/Catalyst/Controller/DBIC/API.pm +++ b/lib/Catalyst/Controller/DBIC/API.pm @@ -635,7 +635,7 @@ sub validate_object } # check for multiple values - if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false)) + if (ref($value) && !(reftype($value) eq reftype(JSON::Any::true))) { require Data::Dumper; die "Multiple values for '${key}': ${\Data::Dumper::Dumper($value)}"; @@ -719,7 +719,7 @@ sub save_object =method_protected update_object_from_params -update_object_from_params iterates through the params to see if any of them are pertinent to relations. If so it calls L with the object, and the relation parameters. Then it calls ->upbdate on the object. +update_object_from_params iterates through the params to see if any of them are pertinent to relations. If so it calls L with the object, and the relation parameters. Then it calls ->update on the object. =cut @@ -730,7 +730,7 @@ sub update_object_from_params foreach my $key (keys %$params) { my $value = $params->{$key}; - if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false)) + if (ref($value) && !(reftype($value) eq reftype(JSON::Any::true))) { $self->update_object_relation($c, $object, delete $params->{$key}, $key); } @@ -770,7 +770,7 @@ sub insert_object_from_params my %rels; while (my ($k, $v) = each %{ $params }) { - if (ref $v && !($v == JSON::Any::true || $v == JSON::Any::false)) { + if (ref($v) && !(reftype($v) eq reftype(JSON::Any::true))) { $rels{$k} = $v; } else { @@ -864,7 +864,7 @@ sub each_object_inflate { my ($self, $c, $object) = @_; - return { $object->get_inflated_columns }; + return { $object->get_columns }; } # from Catalyst::Action::Serialize