git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14108...
[squirrelmail.git] / templates / util_read.php
CommitLineData
b2c3dc09 1<?php
2/**
3 * util_read.php
4 *
5 * Utility file containing functions related to reading messages
6 *
ae5dddc0 7 * @copyright 1999-2011 The SquirrelMail Project Team
b2c3dc09 8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package squirrelmail
11 * @subpackage templates
12 */
13
14/**
15 * Return a string representing the priority of a message
16 */
17function priorityStr($p) {
18 return htmlspecialchars(getPriorityStr($p));
19}
20
21?>