tp($string, $args = array())Pass a string through t() and wrap the result in html entity <p>.
sites/all/modules/coder/coder_upgrade/coder_upgrade.inc, line 37
<?php
function tp($string, $args = array()) {
return '<p>' . t($string, $args) . '</p>';
}
?>