From: pdontthink Date: Sun, 6 Jan 2008 05:07:29 +0000 (+0000) Subject: Clarify sloppy variable name usage X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e961d845af2ca47ebfd03609ffbf1e3cce529556;p=squirrelmail.git Clarify sloppy variable name usage git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12873 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index cf953a7d..95adfcd0 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -628,7 +628,7 @@ function prepareMessageList(&$aMailbox, $aProps) { 'draft' => false); if(!is_array($value)) $value = array(); - foreach ($value as $sFlag => $value) { + foreach ($value as $sFlag => $v) { switch ($sFlag) { case '\\seen' : $aFlagColumn['seen'] = true; break; case '\\deleted' : $aFlagColumn['deleted'] = true; break;