瀏覽代碼

Utility file for reading messages.

stevetruckstuff 19 年之前
父節點
當前提交
adc3cec238
共有 1 個文件被更改,包括 21 次插入0 次删除
  1. 21 0
      templates/util_read.php

+ 21 - 0
templates/util_read.php

@@ -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));
+}
+
+?>