Utility file for reading messages.
authorstevetruckstuff <stevetruckstuff@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 6 Oct 2006 21:56:45 +0000 (21:56 +0000)
committerstevetruckstuff <stevetruckstuff@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 6 Oct 2006 21:56:45 +0000 (21:56 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11849 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/util_read.php [new file with mode: 0644]

diff --git a/templates/util_read.php b/templates/util_read.php
new file mode 100644 (file)
index 0000000..855a478
--- /dev/null
@@ -0,0 +1,21 @@
+<?php
+/**
+ * util_read.php
+ *
+ * Utility file containing functions related to reading messages
+ * 
+ * @copyright &copy; 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage templates
+ */
+
+/**
+ * Return a string representing the priority of a message
+ */
+function priorityStr($p) {
+    return htmlspecialchars(getPriorityStr($p));
+}
+
+?>
\ No newline at end of file