File: phpbb/textformatter/s9e/utils.php
Unmodified
Added
Modified
Removed
Line 15 | Line 15 |
---|
/** * Text manipulation utilities
|
/** * Text manipulation utilities
|
| * * In this implementation, "plain text" refers to regular text as it would be inputted by a user. * "Parsed text" is XML suitable to be reinserted into the database.
|
*/ class utils implements \phpbb\textformatter\utils_interface {
| */ class utils implements \phpbb\textformatter\utils_interface {
|
Line 31 | Line 34 |
---|
// Insert a space before <s> and <e> then remove formatting $xml = preg_replace('#<[es]>#', ' $0', $xml);
|
// Insert a space before <s> and <e> then remove formatting $xml = preg_replace('#<[es]>#', ' $0', $xml);
|
return utf8_htmlspecialchars(\s9e\TextFormatter\Utils::removeFormatting($xml));
| return \s9e\TextFormatter\Utils::removeFormatting($xml);
|
}
/**
| }
/**
|