fixed some bugs in the sqimap_mailbox_close() function
[squirrelmail.git] / src / empty_trash.php
index a89b2cc3740c00e7ba6f30b49b2921b231be1ff3..aa3eb97e967a218df70f2a2a1e2cb04addfbba97 100644 (file)
@@ -1,4 +1,14 @@
-<?
+<?php
+   /**
+    **  empty_trash.php
+    **
+    **  Copyright (c) 1999-2000 The SquirrelMail development team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
+    **
+    **  Handles deleting messages from the trash folder without
+    **  deleting subfolders.
+    **/
+
    session_start();
 
    include("../config/config.php");
@@ -46,9 +56,8 @@
    // now lets go through the tree and delete the folders
    walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
 
-   sqimap_mailbox_select($imap_stream, $trash_folder, $numMessages);
-   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
-   displayPageHeader($color, $mailbox);
-   messages_deleted_message($trash_folder, $sort, $startMessage, $color);
+   $location = get_location();
+   header ("Location: $location/left_main.php");
+
    sqimap_logout($imap_stream);
 ?>