Require smilies to be surrounded by spaces or be at the beginning or end of the line, see #6464
git-svn-id: https://develop.svn.wordpress.org/trunk@10514 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
58b6d3b7a1
commit
ac427bbdcc
@ -2510,7 +2510,7 @@ function smilies_init() {
|
|||||||
// new subpattern?
|
// new subpattern?
|
||||||
if ($firstchar != $subchar) {
|
if ($firstchar != $subchar) {
|
||||||
if ($subchar != '') {
|
if ($subchar != '') {
|
||||||
$wp_smiliessearch .= ')|';
|
$wp_smiliessearch .= ')|(?:\s|^)';
|
||||||
}
|
}
|
||||||
$subchar = $firstchar;
|
$subchar = $firstchar;
|
||||||
$wp_smiliessearch .= preg_quote($firstchar, '/') . '(?:';
|
$wp_smiliessearch .= preg_quote($firstchar, '/') . '(?:';
|
||||||
@ -2520,7 +2520,7 @@ function smilies_init() {
|
|||||||
$wp_smiliessearch .= preg_quote($rest);
|
$wp_smiliessearch .= preg_quote($rest);
|
||||||
}
|
}
|
||||||
|
|
||||||
$wp_smiliessearch .= ')(?:\s|$)/';
|
$wp_smiliessearch .= ')(?:\s|$)/m';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user