From: <pdo...@us...> - 2025-04-22 05:11:47
|
Revision: 15040 http://sourceforge.net/p/squirrelmail/code/15040 Author: pdontthink Date: 2025-04-22 05:11:30 +0000 (Tue, 22 Apr 2025) Log Message: ----------- Fix missing quotes Modified Paths: -------------- trunk/squirrelmail/plugins/filters/filters.php Modified: trunk/squirrelmail/plugins/filters/filters.php =================================================================== --- trunk/squirrelmail/plugins/filters/filters.php 2025-04-20 06:58:38 UTC (rev 15039) +++ trunk/squirrelmail/plugins/filters/filters.php 2025-04-22 05:11:30 UTC (rev 15040) @@ -217,7 +217,7 @@ * check hook that calls filtering. If filters are called by right_main_after_header, * do filtering only when we are in INBOX folder. */ - if (PAGE_NAME == right_main && + if (PAGE_NAME == 'right_main' && (sqgetGlobalVar('mailbox',$mailbox,SQ_FORM) && $mailbox!='INBOX')) { return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |