From 0e21688dd42842f11a2ad2aeb08abe17bc12301f Mon Sep 17 00:00:00 2001 From: simond Date: Thu, 21 Mar 2002 17:51:30 +0000 Subject: [PATCH] Remove tabs and fix org height/width (thanks to Craig Kelley) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2618 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/conf.pl b/config/conf.pl index 2b5b72bc..fbd3ae57 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -663,13 +663,13 @@ sub command2a { if ( $new_org_logo_width eq '' ) { $new_org_logo_width = $org_logo_width; } - if ( $new_org_logo_height > 0 ) { - print "Height: [$WHT$org_logo_height$NRM]: $WHT"; - $new_org_logo_height = ; - $new_org_logo_height =~ tr/0-9//cd; # only want digits! + if ( $new_org_logo_width > 0 ) { + 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; } else { - $new_org_logo_height = 0; + $new_org_logo_height = 0; } return ($new_org_logo_width, $new_org_logo_height); } @@ -1040,14 +1040,14 @@ sub command21 { $new_default_folder_prefix = ""; } else { # add the trailing delimiter only if we know what the server is. - if ($optional_delimiter and $optional_delimiter ne 'detect') { + if ($optional_delimiter and $optional_delimiter ne 'detect') { $new_default_folder_prefix =~ s/${optional_delimiter}*$/$optional_delimiter/; - } elsif ($imap_server_type eq 'cyrus' or - $imap_server_type eq 'courier') { + } elsif ($imap_server_type eq 'cyrus' or + $imap_server_type eq 'courier') { $new_default_folder_prefix =~ s/\.*$/\./; - } elsif ($imap_server_type eq 'uw') { + } elsif ($imap_server_type eq 'uw') { $new_default_folder_prefix =~ s/\/*$/\//; - } + } } return $new_default_folder_prefix; } -- 2.25.1