aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/tree
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-06 11:20:39 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-06 11:20:39 +0100
commit17d4dcc30b286d40147bd80b6517a5ad0c4e3966 (patch)
tree34601245499d1318011fb320f7f4de7ebdde3cef /phpBB/includes/tree
parent433a23feb4244e24653e3b3d27ae3b5161e4aa8a (diff)
parent16dbbdb34cfaaf27d367f77395c72fd5676d9a22 (diff)
downloadforums-17d4dcc30b286d40147bd80b6517a5ad0c4e3966.tar
forums-17d4dcc30b286d40147bd80b6517a5ad0c4e3966.tar.gz
forums-17d4dcc30b286d40147bd80b6517a5ad0c4e3966.tar.bz2
forums-17d4dcc30b286d40147bd80b6517a5ad0c4e3966.tar.xz
forums-17d4dcc30b286d40147bd80b6517a5ad0c4e3966.zip
Merge pull request #5820 from marc1706/ticket/16293
[ticket/16293] Do not update to hashes that don't support combined hashing
Diffstat (limited to 'phpBB/includes/tree')
0 files changed, 0 insertions, 0 deletions
ct>mode:
authorOlivier Blin <oblin@mandriva.org>2005-04-06 10:58:01 +0000
committerOlivier Blin <oblin@mandriva.org>2005-04-06 10:58:01 +0000
commit43362aa70f0fee6f6486ec6eec1a0e78412e1cfd (patch)
treed64486e40a66b9a9a828d9779425b2fd885d318e /perl-install/do_pkgs.pm
parentd482ffef5f46089485a53f7485fc64a141047083 (diff)
downloaddrakx-43362aa70f0fee6f6486ec6eec1a0e78412e1cfd.tar
drakx-43362aa70f0fee6f6486ec6eec1a0e78412e1cfd.tar.gz
drakx-43362aa70f0fee6f6486ec6eec1a0e78412e1cfd.tar.bz2
drakx-43362aa70f0fee6f6486ec6eec1a0e78412e1cfd.tar.xz
drakx-43362aa70f0fee6f6486ec6eec1a0e78412e1cfd.zip
use short-circuit operator (/me sux, thanks Pixel)
Diffstat (limited to 'perl-install/do_pkgs.pm')
-rw-r--r--perl-install/do_pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm
index 0b2c23fa4..2ea2f16c6 100644
--- a/perl-install/do_pkgs.pm
+++ b/perl-install/do_pkgs.pm
@@ -65,7 +65,7 @@ sub check_kernel_module_packages {
map {
$base_name . '-' . bootloader::vmlinuz2version($_);
} bootloader::installed_vmlinuz());
- my @ext = if_($o_ext_name, $do->are_available($o_ext_name));
+ my @ext = $o_ext_name && $do->are_available($o_ext_name);
log::l("found kernel module packages $_") foreach @rpms, @ext;