You are here

function ueditor_unreplace_pagebeaketag in UEditor - 百度编辑器 7.3

Same name and namespace in other branches
  1. 7.2 ueditor.module \ueditor_unreplace_pagebeaketag()

Unreplace page break tag.

1 call to ueditor_unreplace_pagebeaketag()
ueditor_form_alter in ./ueditor.module
Implementation of hook_form_alter().

File

./ueditor.module, line 595
Integration ueditor for wysiwyg.

Code

function ueditor_unreplace_pagebeaketag($body, $words) {
  $body = str_replace($words, htmlentities(variable_get('paging_separator', '<!--pagebreak-->')), $body);
  return $body;
}