From 57d06b396a90df20a58bd511a486d4c83cbe546b Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 18 Apr 2005 08:06:13 +0000 Subject: [PATCH] use separate subpackage for templates. 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 | 4 +++- templates/default/paginator.tpl | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/default/message_list.tpl b/templates/default/message_list.tpl index 01aab28b..d214d739 100644 --- a/templates/default/message_list.tpl +++ b/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 .= "!"; break; - case 5: $sValue .= "?"; break; + // use downwards arrow for low priority emails + case 5: $sValue .= ""; break; default: break; } } diff --git a/templates/default/paginator.tpl b/templates/default/paginator.tpl index c58ebb45..cdded5f4 100644 --- a/templates/default/paginator.tpl +++ b/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; -- 2.25.1