function fancy_output($content) { if (isTextMode()) { return sprintf('<pre>%s</pre>', htmlspecialcharsbx($content)); } return sprintf('<p>%s</e>', $content); }
function fancy_output($content) { if (isTextMode()) { $flags = ENT_COMPAT; if (defined('ENT_SUBSTITUTE')) { $flags |= ENT_SUBSTITUTE; } else { $flags |= ENT_IGNORE; } return sprintf('<pre>%s</pre>', htmlspecialcharsbx($content, $flags)); } return sprintf('<p>%s</e>', $content); }