Add FIXME
[squirrelmail.git] / templates / default / read_message_priority.tpl
CommitLineData
3cb5a0bb 1<?php
2/**
3 * read_message_priority.php
4 *
5 * Tempalte to return the message priority
6 *
7 * The following variables are available in this template:
8 * $message_priority - Priority setting as set in the message.
9 *
10 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage templates
15 */
16
17/** add required includes **/
18include_once(SM_PATH . 'templates/util_read.php');
19
20/** extract template variables **/
21extract($t);
22
23/** Begin template **/
24echo priorityStr($message_priority);
25?>