aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/group
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-10-20 21:06:53 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-10-20 21:06:53 +0200
commit23fd522dbbefa81bfbced2115d9a3a86b26f8d64 (patch)
treed20bbf804ce3c59c7fb1dbfaceaef11e478327c6 /phpBB/phpbb/group
parentf0bf54f9eb01379ae3c18b351da75bbd8b071c64 (diff)
parentdcf733a1e76150fbb5cecce14cc6568af4c93968 (diff)
downloadforums-23fd522dbbefa81bfbced2115d9a3a86b26f8d64.tar
forums-23fd522dbbefa81bfbced2115d9a3a86b26f8d64.tar.gz
forums-23fd522dbbefa81bfbced2115d9a3a86b26f8d64.tar.bz2
forums-23fd522dbbefa81bfbced2115d9a3a86b26f8d64.tar.xz
forums-23fd522dbbefa81bfbced2115d9a3a86b26f8d64.zip
Merge pull request #5704 from senky/ticket/16172
[ticket/16172] Add group rank label to group view
Diffstat (limited to 'phpBB/phpbb/group')
0 files changed, 0 insertions, 0 deletions
;'>mode:
authorFrancois Pons <fpons@mandriva.com>2000-09-01 12:36:09 +0000
committerFrancois Pons <fpons@mandriva.com>2000-09-01 12:36:09 +0000
commit0c928ac011478e29c10950a8f21e4bd7140e2a63 (patch)
treee6ef28ecbe9d82ee895543842ff97fb69f1f15ae /perl-install/network.pm
parented0e070f2f50f0c2283651e1de0c9bb6713f3c29 (diff)
downloaddrakx-0c928ac011478e29c10950a8f21e4bd7140e2a63.tar
drakx-0c928ac011478e29c10950a8f21e4bd7140e2a63.tar.gz
drakx-0c928ac011478e29c10950a8f21e4bd7140e2a63.tar.bz2
drakx-0c928ac011478e29c10950a8f21e4bd7140e2a63.tar.xz
drakx-0c928ac011478e29c10950a8f21e4bd7140e2a63.zip
*** empty log message ***
Diffstat (limited to 'perl-install/network.pm')
-rw-r--r--perl-install/network.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm
index 7b9558e44..d099ec309 100644
--- a/perl-install/network.pm
+++ b/perl-install/network.pm
@@ -117,7 +117,7 @@ sub add2hosts {
local *F;
if (-e $file) {
open F, $file or die "cannot open $file: $!";
- /\s*(\S+)(.*)/ and $l{$1} = $2 foreach <F>;
+ /\s*(\S+)(.*)/ and $l{$1} ||= $2 foreach <F>;
}
log::l("writing host information to $file");
open F, ">$file" or die "cannot write $file: $!";