From: <pdo...@us...> - 2021-04-18 08:32:38
|
Revision: 14916 http://sourceforge.net/p/squirrelmail/code/14916 Author: pdontthink Date: 2021-04-18 08:32:35 +0000 (Sun, 18 Apr 2021) Log Message: ----------- Be more consistent - Initialize unseen string to a string Modified Paths: -------------- branches/SM-1_4-STABLE/squirrelmail/src/left_main.php Modified: branches/SM-1_4-STABLE/squirrelmail/src/left_main.php =================================================================== --- branches/SM-1_4-STABLE/squirrelmail/src/left_main.php 2021-04-15 17:21:47 UTC (rev 14915) +++ branches/SM-1_4-STABLE/squirrelmail/src/left_main.php 2021-04-18 08:32:35 UTC (rev 14916) @@ -207,7 +207,7 @@ global $boxes, $unseen_type, $color, $unseen_cum; /* Initialize the return value. */ - $result = array(0,0); + $result = array('',0); /* Initialize the counts for this folder. */ $boxUnseenCount = 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |