You are here

function _codefilter_escape_php_tag_callback in Code Filter 7

Callback to escape content of <?php ?>, [?php ?], <% %>, and [% %] elements.

File

./codefilter.module, line 145
Text filter for highlighting PHP source code.

Code

function _codefilter_escape_php_tag_callback($matches) {
  return codefilter_escape($matches[2], 'php');
}