You are here

function _xbbcode_revert_tags in Extensible BBCode 6

Same name and namespace in other branches
  1. 5 xbbcode-misc.php \_xbbcode_revert_tags()
1 call to _xbbcode_revert_tags()
xbbcode_basic_render_code in xbbcode_basic/xbbcode_basic.module

File

./xbbcode.inc, line 116

Code

function _xbbcode_revert_tags($text) {
  return preg_replace('/\\[([^\\]]+)-[0-9]+-\\]/i', '[$1]', $text);
}