util_read.php 457 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * util_read.php
  4. *
  5. * Utility file containing functions related to reading messages
  6. *
  7. * @copyright &copy; 1999-2007 The SquirrelMail Project Team
  8. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  9. * @version $Id$
  10. * @package squirrelmail
  11. * @subpackage templates
  12. */
  13. /**
  14. * Return a string representing the priority of a message
  15. */
  16. function priorityStr($p) {
  17. return htmlspecialchars(getPriorityStr($p));
  18. }
  19. ?>