use separate subpackage for templates.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 18 Apr 2005 08:06:13 +0000 (08:06 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 18 Apr 2005 08:06:13 +0000 (08:06 +0000)
use downwards arrow instead of question mark for low priority emails.
add phpdoc tags before first include

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9336 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/message_list.tpl
templates/default/paginator.tpl

index 01aab28b3a7600c3726f6aac6474206b90c0441c..d214d739d7f4f82e9bd75d972d7cae1f48268cb7 100644 (file)
@@ -10,6 +10,7 @@
  *
  * @version $Id$
  * @package squirrelmail
+ * @subpackage templates
  */
 
 /** add required includes */
@@ -344,7 +345,8 @@ $clickedColor = (empty($color[16])) ? $color[2] : $color[16];
             switch ($aColumns[SQM_COL_PRIO]['value']) {
                 case 1:
                 case 2: $sValue .= "<font color=\"$color[1]\">!</font>"; break;
-                case 5: $sValue .= "<font color=\"$color[8]\">?</font>"; break;
+               // use downwards arrow for low priority emails
+                case 5: $sValue .= "<font color=\"$color[8]\">&#8595;</font>"; break;
                 default: break;
             }
         }
index c58ebb45d46be5a243bb80048c8048160ed3011f..cdded5f4a7cd05afbe654de00db86ba0fab3ac6b 100644 (file)
  *
  * @version $Id$
  * @package squirrelmail
+ * @subpackage templates
  */
 
+/** include functions */
 include_once(SM_PATH.'templates/util_paginator.php');
 
 static $bScriptAdded;