From 7dfa92cb707e8127221a86da6f3ce531ee1727e4 Mon Sep 17 00:00:00 2001 From: kink Date: Sat, 26 Oct 2002 11:00:55 +0000 Subject: [PATCH] Workaround buggy Opera by adding newlines. Thanks Sander Smeenk git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4025 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/webmail.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/webmail.php b/src/webmail.php index 2ff4115f..b67c7225 100644 --- a/src/webmail.php +++ b/src/webmail.php @@ -64,9 +64,9 @@ if ($my_language != $squirrelmail_language) { set_up_language(getPref($data_dir, $username, 'language')); -echo ''. +echo "\n". "\n" . - "$org_title"; + "$org_title\n"; $left_size = getPref($data_dir, $username, 'left_size'); $location_of_bar = getPref($data_dir, $username, 'location_of_bar'); @@ -93,10 +93,10 @@ if ($left_size == "") { } if ($location_of_bar == 'right') { - echo ""; + echo "\n"; } else { - echo ""; + echo "\n"; } /* @@ -129,12 +129,12 @@ if ($right_frame == 'right_main.php') { } if ($location_of_bar == 'right') { - echo "" . - ''; + echo "\n" . + "\n"; } else { - echo ''. - ""; + echo "\n". + "\n"; } do_hook('webmail_bottom'); ?> -- 2.25.1