21 lines
No EOL
462 B
PHP
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));
|
|
}
|
|
|
|
?>
|