squirrelmail/templates/util_read.php
2025-01-03 11:47:03 -08:00

21 lines
No EOL
462 B
PHP

<?php
/**
* util_read.php
*
* Utility file containing functions related to reading messages
*
* @copyright 1999-2025 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 sm_encode_html_special_chars(getPriorityStr($p));
}
?>