From: Michael Tremer Date: Thu, 13 Mar 2014 14:43:52 +0000 (+0100) Subject: ipfire theme: Fix default setting for hostname in title. X-Git-Tag: v2.15-rc1~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b6c5f257980b0f9e4d31f26ac1945092a45df6a;p=people%2Fms%2Fipfire-2.x.git ipfire theme: Fix default setting for hostname in title. --- diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/themes/ipfire/include/functions.pl index f71181e632..0c47cd456b 100644 --- a/html/html/themes/ipfire/include/functions.pl +++ b/html/html/themes/ipfire/include/functions.pl @@ -110,7 +110,7 @@ sub openpage { &genmenu(); my $headline = "IPFire"; - if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') { + if (($settings{'WINDOWWITHHOSTNAME'} eq 'on') || ($settings{'WINDOWWITHHOSTNAME'} eq '')) { $headline = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}"; }