|
From: <pdo...@us...> - 2021-02-06 07:26:03
|
Revision: 14893
http://sourceforge.net/p/squirrelmail/code/14893
Author: pdontthink
Date: 2021-02-06 07:25:55 +0000 (Sat, 06 Feb 2021)
Log Message:
-----------
Stop using curly braces
Modified Paths:
--------------
trunk/squirrelmail/functions/mailbox_display.php
Modified: trunk/squirrelmail/functions/mailbox_display.php
===================================================================
--- trunk/squirrelmail/functions/mailbox_display.php 2021-02-06 07:22:06 UTC (rev 14892)
+++ trunk/squirrelmail/functions/mailbox_display.php 2021-02-06 07:25:55 UTC (rev 14893)
@@ -733,7 +733,7 @@
}
if ($hlt_color) {
// Bug in highlight color???
- if ($hlt_color{0} != '#') {
+ if ($hlt_color[0] != '#') {
$hlt_color = '#'. $hlt_color;
}
$aFormat['row']['color'] = $hlt_color;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|