Skip Menu |

This queue is for tickets about the DBICx-Modeler CPAN distribution.

Report information
The Basics
Id: 87274
Status: new
Priority: 0/
Queue: DBICx-Modeler

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than or, so the expressions after or are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: DBICx-Modeler-0.005-returnor.patch
diff -bu ./lib/DBICx/Modeler.pm~ ./lib/DBICx/Modeler.pm --- ./lib/DBICx/Modeler.pm~ 2009-10-23 15:22:28.000000000 -0500 +++ ./lib/DBICx/Modeler.pm 2013-07-24 16:26:43.473159706 -0500 @@ -329,7 +329,7 @@ sub model_source { my $self = shift; my $model_source = shift; - return $self->_model_source( $model_source ) or croak "Couldn't find model source with key $model_source"; + return $self->_model_source( $model_source ) || croak "Couldn't find model source with key $model_source"; } sub model {