|
@@ -14,9 +14,7 @@
|
|
*/
|
|
*/
|
|
|
|
|
|
/** Path for SquirrelMail required files. */
|
|
/** Path for SquirrelMail required files. */
|
|
-if (!defined('SM_PATH'))
|
|
|
|
- define('SM_PATH','../');
|
|
|
|
-
|
|
|
|
|
|
+define('SM_PATH','../');
|
|
|
|
|
|
/* SquirrelMail required files. */
|
|
/* SquirrelMail required files. */
|
|
require_once(SM_PATH . 'include/validate.php');
|
|
require_once(SM_PATH . 'include/validate.php');
|
|
@@ -38,14 +36,11 @@ function formatMailboxName($imapConnection, $box_array) {
|
|
$color, $move_to_sent, $move_to_trash,
|
|
$color, $move_to_sent, $move_to_trash,
|
|
$unseen_notify, $unseen_type, $collapse_folders,
|
|
$unseen_notify, $unseen_type, $collapse_folders,
|
|
$draft_folder, $save_as_draft,
|
|
$draft_folder, $save_as_draft,
|
|
- $use_special_folder_color, $use_frames;
|
|
|
|
|
|
+ $use_special_folder_color;
|
|
$real_box = $box_array['unformatted'];
|
|
$real_box = $box_array['unformatted'];
|
|
$mailbox = str_replace(' ','',$box_array['formatted']);
|
|
$mailbox = str_replace(' ','',$box_array['formatted']);
|
|
$mailboxURL = urlencode($real_box);
|
|
$mailboxURL = urlencode($real_box);
|
|
- if ($use_frames)
|
|
|
|
- $target = 'right';
|
|
|
|
- else
|
|
|
|
- $target = '';
|
|
|
|
|
|
+
|
|
/* Strip down the mailbox name. */
|
|
/* Strip down the mailbox name. */
|
|
if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) {
|
|
if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) {
|
|
$mailbox = $regs[2];
|
|
$mailbox = $regs[2];
|
|
@@ -70,8 +65,8 @@ function formatMailboxName($imapConnection, $box_array) {
|
|
|
|
|
|
/* Create the link for this folder. */
|
|
/* Create the link for this folder. */
|
|
if ($status !== false) {
|
|
if ($status !== false) {
|
|
- $line .= '<a href="' . SM_PATH . 'src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox='.
|
|
|
|
- $mailboxURL.'" TARGET="' . $target . '" STYLE="text-decoration:none">';
|
|
|
|
|
|
+ $line .= '<a href="right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox='.
|
|
|
|
+ $mailboxURL.'" TARGET="right" STYLE="text-decoration:none">';
|
|
}
|
|
}
|
|
if ($special_color) {
|
|
if ($special_color) {
|
|
$line .= "<font color=\"$color[11]\">";
|
|
$line .= "<font color=\"$color[11]\">";
|
|
@@ -104,7 +99,7 @@ function formatMailboxName($imapConnection, $box_array) {
|
|
if (($numMessages > 0) or ($box_array['parent'] == 1)) {
|
|
if (($numMessages > 0) or ($box_array['parent'] == 1)) {
|
|
$urlMailbox = urlencode($real_box);
|
|
$urlMailbox = urlencode($real_box);
|
|
$line .= "\n<small>\n" .
|
|
$line .= "\n<small>\n" .
|
|
- " (<A HREF=\"" . SM_PATH . "src/empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A>)" .
|
|
|
|
|
|
+ " (<A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A>)" .
|
|
"</small>";
|
|
"</small>";
|
|
} else {
|
|
} else {
|
|
$line .= concat_hook_function('left_main_after_each_folder',
|
|
$line .= concat_hook_function('left_main_after_each_folder',
|
|
@@ -175,12 +170,9 @@ function create_collapse_link($boxnum) {
|
|
global $boxes, $imapConnection, $unseen_notify, $color;
|
|
global $boxes, $imapConnection, $unseen_notify, $color;
|
|
$mailbox = urlencode($boxes[$boxnum]['unformatted']);
|
|
$mailbox = urlencode($boxes[$boxnum]['unformatted']);
|
|
|
|
|
|
-
|
|
|
|
/* Create the link for this collapse link. */
|
|
/* Create the link for this collapse link. */
|
|
-
|
|
|
|
$link = '<a target="left" style="text-decoration:none" ' .
|
|
$link = '<a target="left" style="text-decoration:none" ' .
|
|
- 'href="' . SM_PATH . 'src/left_main.php?';
|
|
|
|
-
|
|
|
|
|
|
+ 'href="left_main.php?';
|
|
if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) {
|
|
if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) {
|
|
$link .= "unfold=$mailbox\">+";
|
|
$link .= "unfold=$mailbox\">+";
|
|
} else {
|
|
} else {
|
|
@@ -295,7 +287,7 @@ function is_parent_box($curbox_name, $parbox_name) {
|
|
|
|
|
|
function ListBoxes ($boxes, $j=0 ) {
|
|
function ListBoxes ($boxes, $j=0 ) {
|
|
global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
|
|
global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
|
|
- $move_to_trash, $trash_folder, $collapse_folders, $imapConnection, $use_frames;
|
|
|
|
|
|
+ $move_to_trash, $trash_folder, $collapse_folders, $imapConnection;
|
|
|
|
|
|
$pre = '<nobr>';
|
|
$pre = '<nobr>';
|
|
$end = '';
|
|
$end = '';
|
|
@@ -351,10 +343,8 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
if (isset($boxes->mbxs[0]) && $collapse_folders) {
|
|
if (isset($boxes->mbxs[0]) && $collapse_folders) {
|
|
$collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
|
|
$collapse = getPref($data_dir, $username, 'collapse_folder_' . $mailbox);
|
|
$collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
|
|
$collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
|
|
- if ($use_frames)
|
|
|
|
- $link = '<a target="left" style="text-decoration:none" ' .'href="' . SM_PATH . 'src/left_main.php?';
|
|
|
|
- else
|
|
|
|
- $link = '<a style="text-decoration:none" ' .'href="' . SM_PATH . 'src/right_main.php?';
|
|
|
|
|
|
+
|
|
|
|
+ $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
|
|
if ($collapse) {
|
|
if ($collapse) {
|
|
$link .= "unfold=$mailboxURL\">$leader+ </tt>";
|
|
$link .= "unfold=$mailboxURL\">$leader+ </tt>";
|
|
} else {
|
|
} else {
|
|
@@ -366,11 +356,6 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
$pre.= $leader . ' </tt>';
|
|
$pre.= $leader . ' </tt>';
|
|
}
|
|
}
|
|
|
|
|
|
- if ($use_frames)
|
|
|
|
- $target = 'right';
|
|
|
|
- else
|
|
|
|
- $target = '';
|
|
|
|
-
|
|
|
|
/* If there are unseen message, bold the line. */
|
|
/* If there are unseen message, bold the line. */
|
|
if (($move_to_trash) && ($mailbox == $trash_folder)) {
|
|
if (($move_to_trash) && ($mailbox == $trash_folder)) {
|
|
if (! isset($boxes->total)) {
|
|
if (! isset($boxes->total)) {
|
|
@@ -379,7 +364,7 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$pre .= '<b>';
|
|
$pre .= '<b>';
|
|
}
|
|
}
|
|
- $pre .= "<a href=\"" . SM_PATH . "src/right_main.php?PG_SHOWALL=0&sort=0;startMessage=1&mailbox=$mailboxURL\" target=\"$target\" style=\"text-decoration:none\">";
|
|
|
|
|
|
+ $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&sort=0;startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$end .= '</b>';
|
|
$end .= '</b>';
|
|
}
|
|
}
|
|
@@ -388,7 +373,7 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$pre .= '<b>';
|
|
$pre .= '<b>';
|
|
}
|
|
}
|
|
- $pre .= "<a href=\"" . SM_PATH . "src/right_main.php?PG_SHOWALL=0&sort=0;startMessage=1&mailbox=$mailboxURL\" target=\"$target\" style=\"text-decoration:none\">";
|
|
|
|
|
|
+ $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&sort=0;startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$end .= '</b>';
|
|
$end .= '</b>';
|
|
}
|
|
}
|
|
@@ -397,7 +382,7 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
$end .= " <small>$unseen_string</small>";
|
|
$end .= " <small>$unseen_string</small>";
|
|
}
|
|
}
|
|
$end .= "\n<small>\n" .
|
|
$end .= "\n<small>\n" .
|
|
- " (<a href=\"" . SM_PATH . "src/empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</a>)" .
|
|
|
|
|
|
+ " (<a href=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</a>)" .
|
|
"</small>";
|
|
"</small>";
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
@@ -405,7 +390,7 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$pre .= '<b>';
|
|
$pre .= '<b>';
|
|
}
|
|
}
|
|
- $pre .= "<a href=\"" . SM_PATH . "src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"$target\" style=\"text-decoration:none\">";
|
|
|
|
|
|
+ $pre .= "<a href=\"right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
|
|
if ($unseen > 0) {
|
|
if ($unseen > 0) {
|
|
$end .= '</b>';
|
|
$end .= '</b>';
|
|
}
|
|
}
|
|
@@ -441,16 +426,11 @@ function ListBoxes ($boxes, $j=0 ) {
|
|
|
|
|
|
function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
|
|
function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
|
|
global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
|
|
global $data_dir, $username, $startmessage, $color, $unseen_notify, $unseen_type,
|
|
- $move_to_trash, $trash_folder, $collapse_folders, $use_frames;
|
|
|
|
|
|
+ $move_to_trash, $trash_folder, $collapse_folders;
|
|
|
|
|
|
if (!$boxes)
|
|
if (!$boxes)
|
|
return;
|
|
return;
|
|
|
|
|
|
- if ($use_frames)
|
|
|
|
- $target = 'right';
|
|
|
|
- else
|
|
|
|
- $target = '';
|
|
|
|
-
|
|
|
|
/* use_folder_images only works if the images exist in ../images */
|
|
/* use_folder_images only works if the images exist in ../images */
|
|
$use_folder_images = true;
|
|
$use_folder_images = true;
|
|
|
|
|
|
@@ -517,17 +497,17 @@ function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
|
|
if (! isset($numMessages)) {
|
|
if (! isset($numMessages)) {
|
|
$numMessages = $boxes->total;
|
|
$numMessages = $boxes->total;
|
|
}
|
|
}
|
|
- $pre = "<a class=\"mbx_link\" href=\"" . SM_PATH . "src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"$target\">" . $pre;
|
|
|
|
|
|
+ $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\">" . $pre;
|
|
$end .= '</a>';
|
|
$end .= '</a>';
|
|
if ($numMessages > 0) {
|
|
if ($numMessages > 0) {
|
|
$urlMailbox = urlencode($mailbox);
|
|
$urlMailbox = urlencode($mailbox);
|
|
$end .= "\n<small>\n" .
|
|
$end .= "\n<small>\n" .
|
|
- " (<a class=\"mbx_link\" href=\"" . SM_PATH . "src/empty_trash.php\">"._("purge")."</a>)" .
|
|
|
|
|
|
+ " (<a class=\"mbx_link\" href=\"empty_trash.php\">"._("purge")."</a>)" .
|
|
"</small>";
|
|
"</small>";
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
if (!$boxes->is_noselect) { /* \Noselect boxes can't be selected */
|
|
if (!$boxes->is_noselect) { /* \Noselect boxes can't be selected */
|
|
- $pre = "<a class=\"mbx_link\" href=\"" . SM_PATH . "src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"$target\">" . $pre;
|
|
|
|
|
|
+ $pre = "<a class=\"mbx_link\" href=\"right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\">" . $pre;
|
|
$end .= '</a>';
|
|
$end .= '</a>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -607,9 +587,6 @@ sqgetGlobalVar('unfold', $unfold, SQ_GET);
|
|
/* end globals */
|
|
/* end globals */
|
|
|
|
|
|
// open a connection on the imap port (143)
|
|
// open a connection on the imap port (143)
|
|
-
|
|
|
|
-
|
|
|
|
-if (!$imapConnection)
|
|
|
|
$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
|
|
$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -619,7 +596,7 @@ if (isset($left_refresh) && ($left_refresh != '') &&
|
|
!stristr($left_refresh, 'none')){
|
|
!stristr($left_refresh, 'none')){
|
|
$xtra = "\n<meta http-equiv=\"Expires\" content=\"Thu, 01 Dec 1994 16:00:00 GMT\" />\n" .
|
|
$xtra = "\n<meta http-equiv=\"Expires\" content=\"Thu, 01 Dec 1994 16:00:00 GMT\" />\n" .
|
|
"<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n".
|
|
"<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n".
|
|
- "<meta http-equiv=\"REFRESH\" content=\"$left_refresh;URL=" . SM_PATH . "src/left_main.php\" />\n";
|
|
|
|
|
|
+ "<meta http-equiv=\"REFRESH\" content=\"$left_refresh;URL=left_main.php\" />\n";
|
|
} else {
|
|
} else {
|
|
$xtra = '';
|
|
$xtra = '';
|
|
}
|
|
}
|
|
@@ -915,10 +892,10 @@ ECHO;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-if ($use_frames)
|
|
|
|
-displayHtmlHeader( 'SquirrelMail', $xtra );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+displayHtmlHeader( 'SquirrelMail', $xtra );
|
|
|
|
+
|
|
/* If requested and not yet complete, attempt to autocreate folders. */
|
|
/* If requested and not yet complete, attempt to autocreate folders. */
|
|
if ($auto_create_special && !isset($auto_create_done)) {
|
|
if ($auto_create_special && !isset($auto_create_done)) {
|
|
$autocreate = array($sent_folder, $trash_folder, $draft_folder);
|
|
$autocreate = array($sent_folder, $trash_folder, $draft_folder);
|
|
@@ -936,30 +913,29 @@ if ($auto_create_special && !isset($auto_create_done)) {
|
|
$auto_create_done = TRUE;
|
|
$auto_create_done = TRUE;
|
|
sqsession_register($auto_create_done, 'auto_create_done');
|
|
sqsession_register($auto_create_done, 'auto_create_done');
|
|
}
|
|
}
|
|
-if ($use_frames) {
|
|
|
|
- if ($advanced_tree)
|
|
|
|
- echo "\n<body" .
|
|
|
|
|
|
+
|
|
|
|
+if ($advanced_tree)
|
|
|
|
+ echo "\n<body" .
|
|
' onload="preload(\'../images/minus.png\',\'../images/plus.png\')"' .
|
|
' onload="preload(\'../images/minus.png\',\'../images/plus.png\')"' .
|
|
- " bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
|
|
|
|
- else
|
|
|
|
- echo "\n<body bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
|
|
|
|
-
|
|
|
|
- do_hook('left_main_before');
|
|
|
|
- if ($advanced_tree) {
|
|
|
|
- /* nice future feature, needs layout !! volunteers? */
|
|
|
|
- $right_pos = $left_size - 20;
|
|
|
|
- /* echo '<div style="position:absolute;top:0;border=solid;border-width:0.1em;border-color:blue;"><div ID="hidef" style="width=20;font-size:12"><A HREF="javascript:hideframe(true)"><b><<</b></a></div>';
|
|
|
|
- echo '<div ID="showf" style="width=20;font-size:12;display:none;"><a href="javascript:hideframe(false)"><b>>></b></a></div>';
|
|
|
|
- echo '<div ID="incrf" style="width=20;font-size:12"><a href="javascript:resizeframe(true)"><b>></b></a></div>';
|
|
|
|
- echo '<div ID="decrf" style="width=20;font-size:12"><a href="javascript:resizeframe(false)"><b><</b></a></div></div>';
|
|
|
|
- echo '<div ID="leftframe"><br /><br />';*/
|
|
|
|
- }
|
|
|
|
|
|
+ " bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
|
|
|
|
+else
|
|
|
|
+ echo "\n<body bgcolor=\"$color[3]\" text=\"$color[6]\" link=\"$color[6]\" vlink=\"$color[6]\" alink=\"$color[6]\">\n";
|
|
|
|
+
|
|
|
|
+do_hook('left_main_before');
|
|
|
|
+if ($advanced_tree) {
|
|
|
|
+ /* nice future feature, needs layout !! volunteers? */
|
|
|
|
+ $right_pos = $left_size - 20;
|
|
|
|
+/* echo '<div style="position:absolute;top:0;border=solid;border-width:0.1em;border-color:blue;"><div ID="hidef" style="width=20;font-size:12"><A HREF="javascript:hideframe(true)"><b><<</b></a></div>';
|
|
|
|
+ echo '<div ID="showf" style="width=20;font-size:12;display:none;"><a href="javascript:hideframe(false)"><b>>></b></a></div>';
|
|
|
|
+ echo '<div ID="incrf" style="width=20;font-size:12"><a href="javascript:resizeframe(true)"><b>></b></a></div>';
|
|
|
|
+ echo '<div ID="decrf" style="width=20;font-size:12"><a href="javascript:resizeframe(false)"><b><</b></a></div></div>';
|
|
|
|
+ echo '<div ID="leftframe"><br /><br />';*/
|
|
}
|
|
}
|
|
|
|
+
|
|
echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) .
|
|
echo "\n\n" . html_tag( 'table', '', 'left', '', 'border="0" cellspacing="0" cellpadding="0" width="99%"' ) .
|
|
html_tag( 'tr' ) .
|
|
html_tag( 'tr' ) .
|
|
- html_tag( 'td', '', 'left' );
|
|
|
|
- if ($use_frames != 1)
|
|
|
|
- '<center><font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n";
|
|
|
|
|
|
+ html_tag( 'td', '', 'left' ) .
|
|
|
|
+ '<center><font size="4"><b>'. _("Folders") . "</b><br /></font>\n\n";
|
|
|
|
|
|
if ($date_format != 6) {
|
|
if ($date_format != 6) {
|
|
/* First, display the clock. */
|
|
/* First, display the clock. */
|
|
@@ -997,17 +973,9 @@ if ($date_format != 6) {
|
|
}
|
|
}
|
|
|
|
|
|
/* Next, display the refresh button. */
|
|
/* Next, display the refresh button. */
|
|
-if ($use_frames) {
|
|
|
|
- echo '<small>(<a href="' . SM_PATH . 'src/left_main.php" target="left">'.
|
|
|
|
- _("refresh folder list") . '</a>)</small></center><br />';
|
|
|
|
-} else {
|
|
|
|
-// echo '<small>(<a href="' . SM_PATH . 'src/left_main.php">'.
|
|
|
|
-// _("refresh folder list") . '</a>)</small></center><br />';
|
|
|
|
- echo '</center><br />';
|
|
|
|
- $collapse_folders = 0;
|
|
|
|
-}
|
|
|
|
|
|
+echo '<small>(<a href="../src/left_main.php" target="left">'.
|
|
|
|
+ _("refresh folder list") . '</a>)</small></center><br />';
|
|
|
|
|
|
-global $data_dir;
|
|
|
|
/* Lastly, display the folder list. */
|
|
/* Lastly, display the folder list. */
|
|
if ( $collapse_folders ) {
|
|
if ( $collapse_folders ) {
|
|
/* If directed, collapse or uncollapse a folder. */
|
|
/* If directed, collapse or uncollapse a folder. */
|
|
@@ -1097,7 +1065,7 @@ for ($i = 0; $i < count($boxes); $i++) {
|
|
} else { /* expiremental code */
|
|
} else { /* expiremental code */
|
|
$boxes = sqimap_mailbox_tree($imapConnection);
|
|
$boxes = sqimap_mailbox_tree($imapConnection);
|
|
if (isset($advanced_tree) && $advanced_tree) {
|
|
if (isset($advanced_tree) && $advanced_tree) {
|
|
- echo '<form name="collapse" action="' . SM_PATH . 'src/left_main.php" method="post" ' .
|
|
|
|
|
|
+ echo '<form name="collapse" action="left_main.php" method="post" ' .
|
|
'enctype="multipart/form-data"'."\n";
|
|
'enctype="multipart/form-data"'."\n";
|
|
echo '<small>';
|
|
echo '<small>';
|
|
echo '<button type="submit" class="button" onmouseover="buttonover(this,true)" onmouseout="buttonover(this,false)" onmousedown="buttonclick(this,true)" onmouseup="buttonclick(this,false)">'. _("Save folder tree") .'</button><br /><br />';
|
|
echo '<button type="submit" class="button" onmouseover="buttonover(this,true)" onmouseout="buttonover(this,false)" onmousedown="buttonclick(this,true)" onmouseup="buttonclick(this,false)">'. _("Save folder tree") .'</button><br /><br />';
|
|
@@ -1113,15 +1081,10 @@ for ($i = 0; $i < count($boxes); $i++) {
|
|
ListBoxes($boxes);
|
|
ListBoxes($boxes);
|
|
}
|
|
}
|
|
} /* if ($oldway) else ... */
|
|
} /* if ($oldway) else ... */
|
|
-if ($use_frames)
|
|
|
|
- do_hook('left_main_after');
|
|
|
|
-if ($location_of_bar == right && !$use_frames)
|
|
|
|
- sqimap_logout($imapConnection);
|
|
|
|
-
|
|
|
|
-echo '<br></td></tr></table>' . "\n";
|
|
|
|
-if ($use_frames)
|
|
|
|
- echo "</div></body></html>\n";
|
|
|
|
-else
|
|
|
|
- echo "</div>\n";
|
|
|
|
|
|
+do_hook('left_main_after');
|
|
|
|
+sqimap_logout($imapConnection);
|
|
|
|
+
|
|
|
|
+echo '</td></tr></table>' . "\n".
|
|
|
|
+ "</div></body></html>\n";
|
|
|
|
|
|
-?>
|
|
|
|
|
|
+?>
|