summaryrefslogtreecommitdiff
path: root/cpan/Module-Load-Conditional
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-09-08 15:41:20 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-09-08 16:44:17 +0100
commit39afdc5aa55747b1a9225da0c4c89a1bd0c8489b (patch)
treed2b22cd81e98c31a41e3dee288fb53f8093d8ca4 /cpan/Module-Load-Conditional
parent14f0f125b45b58bbf2d9e275abf2fef1655f8a3e (diff)
downloadperl-39afdc5aa55747b1a9225da0c4c89a1bd0c8489b.tar.gz
Update Module-Load-Conditional to CPAN version 0.46
[DELTA] Changes for 0.46 Wed Sep 7 23:57:03 BST 2011 ================================================= * Use || instead of "or" (perl#78708) (chorny)
Diffstat (limited to 'cpan/Module-Load-Conditional')
-rw-r--r--cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
index be8984e8ba..39dccf1ce2 100644
--- a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
+++ b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
@@ -18,7 +18,7 @@ BEGIN {
$FIND_VERSION $ERROR $CHECK_INC_HASH];
use Exporter;
@ISA = qw[Exporter];
- $VERSION = '0.44';
+ $VERSION = '0.46';
$VERBOSE = 0;
$DEPRECATED = 0;
$FIND_VERSION = 1;
@@ -332,7 +332,7 @@ sub check_install {
sub _parse_version {
my $self = shift;
my $str = shift or return;
- my $verbose = shift or 0;
+ my $verbose = shift || 0;
### skip lines which doesn't contain VERSION
return unless $str =~ /VERSION/;