aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache/driver
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-07-13 14:29:15 -0700
committerNils Adermann <naderman@naderman.de>2013-07-13 14:29:15 -0700
commit71f6f5ad7e095ded7bcad449e0bcd646ac610117 (patch)
tree8a5703b245a10b2f05a81f9627e8e526aef8fb34 /phpBB/phpbb/cache/driver
parent346efbbb5bbb7dbace03ffae26d9ad28548f24cc (diff)
parente9cc1e9cd276fa6222e52c7c41feb6ef4829f6e3 (diff)
downloadforums-71f6f5ad7e095ded7bcad449e0bcd646ac610117.tar
forums-71f6f5ad7e095ded7bcad449e0bcd646ac610117.tar.gz
forums-71f6f5ad7e095ded7bcad449e0bcd646ac610117.tar.bz2
forums-71f6f5ad7e095ded7bcad449e0bcd646ac610117.tar.xz
forums-71f6f5ad7e095ded7bcad449e0bcd646ac610117.zip
Merge pull request #1554 from EXreaction/ticket/11675
[ticket/11675] Fix template loop
Diffstat (limited to 'phpBB/phpbb/cache/driver')
0 files changed, 0 insertions, 0 deletions
e='1'>ssdiff
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2020-11-15 00:41:49 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2020-11-15 00:41:49 +0000
commit9ff9c35cb538dea537cd424efa9a3065e54cb04a (patch)
tree771ac486a23af8c8d89eb15b6e8626790e9b866a /perl-install/pkgs.pm
parent8ceeb6e06e4fd26f038dcf314d1bccead4132797 (diff)
downloaddrakx-9ff9c35cb538dea537cd424efa9a3065e54cb04a.tar
drakx-9ff9c35cb538dea537cd424efa9a3065e54cb04a.tar.gz
drakx-9ff9c35cb538dea537cd424efa9a3065e54cb04a.tar.bz2
drakx-9ff9c35cb538dea537cd424efa9a3065e54cb04a.tar.xz
drakx-9ff9c35cb538dea537cd424efa9a3065e54cb04a.zip
Fix faulty expression introduced in commit c97259e56.
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 5faace128..5e079f544 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -125,7 +125,7 @@ sub read_rpmsrate {
$match_all_hardware ? 1 : ($inv xor find { $_->{description} =~ /$p/i } @probeall);
} elsif (($p) = /^DRIVER"(.*)"/) {
$match_all_hardware ? 1 : ($inv xor find { $_->{driver} =~ /$p/i } @probeall);
- } elsif (($p) = /^TYPE"(.*)"/ && $p ne '64bit') {
+ } elsif ((($p) = /^TYPE"(.*)"/) && $p ne '64bit') {
$match_all_hardware ? 1 : ($inv xor $TYPEs->{$p});
} elsif (($p) = /^HW_CAT"(.*)"/) {
$match_all_hardware ? 1 : ($inv xor detect_devices::probe_category($p));