Remove tabs and fix org height/width (thanks to Craig Kelley)
authorsimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 21 Mar 2002 17:51:30 +0000 (17:51 +0000)
committersimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 21 Mar 2002 17:51:30 +0000 (17:51 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2618 7612ce4b-ef26-0410-bec9-ea0150e637f0

config/conf.pl

index 2b5b72bc275490e2db1b093d88c0f9b0411a494b..fbd3ae576222c69bc094ce1e633d9fad747deb31 100755 (executable)
@@ -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 = <STDIN>;
-       $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 = <STDIN>;
+        $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;
 }