Explorar el Código

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

tokul hace 20 años
padre
commit
bf24549fe9
Se han modificado 2 ficheros con 5 adiciones y 2 borrados
  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;