From 8e9cd4eb61cd18f4d158402081ecce7f4cb756c5 Mon Sep 17 00:00:00 2001 From: phutnick Date: Sun, 30 Sep 2001 20:46:41 +0000 Subject: [PATCH] Fixed too many equals signs. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1536 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/load_prefs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/load_prefs.php b/src/load_prefs.php index 91c8a083..404bf532 100644 --- a/src/load_prefs.php +++ b/src/load_prefs.php @@ -224,7 +224,7 @@ global $alt_index_colors; $alt_index_colors = getPref($data_dir, $username, 'alt_index_colors'); - if ($alt_index_colors === 0) { + if ($alt_index_colors == 0) { $alt_index_colors = false; } else { $alt_index_colors = true; @@ -248,4 +248,4 @@ do_hook("loading_prefs"); -?> \ No newline at end of file +?> -- 2.25.1