Skip Menu |

This queue is for tickets about the DBIx-Browse CPAN distribution.

Report information
The Basics
Id: 87275
Status: new
Priority: 0/
Queue: DBIx-Browse

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: DBIx-Browse-2.09-returnor.patch
diff -bu ./Browse.pm~ ./Browse.pm --- ./Browse.pm~ 2002-12-10 03:17:20.000000000 -0600 +++ ./Browse.pm 2013-07-24 16:30:31.490927800 -0500 @@ -314,7 +314,7 @@ $self->debug("Prepare: ".$query."\n"); return $self->{dbh}->prepare($query) - or $self->die(); + || $self->die(); } #