From: stekkel Date: Fri, 10 Feb 2006 23:38:42 +0000 (+0000) Subject: it's $sent_folder instead of $send_folder X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=211ff1935bf3dbce0b2c67fa537506e41878f73d;p=squirrelmail.git it's $sent_folder instead of $send_folder git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10700 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/newmail/functions.php b/plugins/newmail/functions.php index a9536a0a..cea3de72 100644 --- a/plugins/newmail/functions.php +++ b/plugins/newmail/functions.php @@ -173,19 +173,20 @@ function newmail_set_loadinfo_function() { /* Receive the status of the folder and do something with it */ function newmail_folder_status($statusarr) { global $newmail_media_enable,$newmail_popup,$newmail_changetitle,$trash_folder, - $send_folder,$totalNewArr,$unseen_notify, $newmail_recent; + $sent_folder,$totalNewArr,$unseen_notify, $newmail_recent; //echo "GOT HOOK
";
     //var_dump($statusarr);
     //echo "

\n"; $mailbox=$statusarr['MAILBOX']; + if ($newmail_media_enable == 'on' || $newmail_popup == 'on' || $newmail_changetitle == 'on') { // Skip folders for Sent and Trash - if ($statusarr['MAILBOX'] == $send_folder || $statusarr['MAILBOX'] == $trash_folder) { + if ($statusarr['MAILBOX'] == $sent_folder || $statusarr['MAILBOX'] == $trash_folder) { return 0; }