function _typogrify_unquote in Typogrify 7
2 calls to _typogrify_unquote()
- _typogrify_process in ./
typogrify.module - Processing function to apply the Typogrify filters.
- _typogrify_settings in ./
typogrify.module - Typogrify filter settings form.
File
- ./
typogrify.module, line 98 - Typogrify: Brings typographical refinemnts to drupal
Code
function _typogrify_unquote($_) {
$_ = str_replace(array(
'<',
'>',
), array(
'<',
'>',
), $_);
return $_;
}