Browse Source

use separate subpackage for templates.
use downwards arrow instead of question mark for low priority emails.
add phpdoc tags before first include

tokul 20 years ago
parent
commit
bf24549fe9
2 changed files with 5 additions and 2 deletions
  1. 3 1
      templates/default/message_list.tpl
  2. 2 1
      templates/default/paginator.tpl

+ 3 - 1
templates/default/message_list.tpl

@@ -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;
             }
         }

+ 2 - 1
templates/default/paginator.tpl

@@ -10,9 +10,10 @@
  *
  * @version $Id$
  * @package squirrelmail
+ * @subpackage templates
  */
 
- 
+/** include functions */
 include_once(SM_PATH.'templates/util_paginator.php');
 
 static $bScriptAdded;