Silence warning on bleadperl (by SMPETERS)
Peter Rabbitson [Tue, 21 Apr 2009 06:30:25 +0000 (06:30 +0000)]
lib/SQL/Abstract.pm

index 457f305..f5bbf62 100644 (file)
@@ -63,7 +63,7 @@ sub new {
   delete $opt{case} if $opt{case} && $opt{case} ne 'lower';
 
   # default logic for interpreting arrayrefs
-  $opt{logic} = uc $opt{logic} || 'OR';
+  $opt{logic} = $opt{logic} ? uc $opt{logic} : 'OR';
 
   # how to return bind vars
   # LDNOTE: changed nwiger code : why this 'delete' ??