From e03345e1d0ff6f767915af809d73463509615edf Mon Sep 17 00:00:00 2001 From: kink Date: Mon, 1 Apr 2002 11:11:32 +0000 Subject: [PATCH] Fix bug #534795 concerning logo height broken git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2658 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/conf.pl b/config/conf.pl index 9b5ec456..ffe93ac6 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -676,7 +676,9 @@ sub command2a { print "Height: [$WHT$org_logo_height$NRM]: $WHT"; $new_org_logo_height = ; $new_org_logo_height =~ tr/0-9//cd; # only want digits! - $new_org_logo_height = $org_logo_height; + if( $new_org_logo_height eq '' ) { + $new_org_logo_height = $org_logo_height; + } } else { $new_org_logo_height = 0; } -- 2.25.1