Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Qudo CPAN distribution.

Report information
The Basics
Id: 87216
Status: new
Priority: 0/
Queue: Qudo

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: Qudo-0.0213-returnor.patch
diff -bu Qudo-0.0213-K_SUO0/lib/Qudo/Test.pm~ Qudo-0.0213-K_SUO0/lib/Qudo/Test.pm --- Qudo-0.0213-K_SUO0/lib/Qudo/Test.pm~ 2011-01-08 00:53:38.000000000 -0600 +++ Qudo-0.0213-K_SUO0/lib/Qudo/Test.pm 2013-07-23 14:07:01.430788003 -0500 @@ -137,7 +137,7 @@ "root", "", { RaiseError => 1 } - ) or die "Couldn't connect to database"; + ) || die "Couldn't connect to database"; } sub dsn_for {