mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-10 07:34:34 +00:00
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:
@@ -2510,7 +2510,7 @@ function smilies_init() {
|
||||
// new subpattern?
|
||||
if ($firstchar != $subchar) {
|
||||
if ($subchar != '') {
|
||||
$wp_smiliessearch .= ')|';
|
||||
$wp_smiliessearch .= ')|(?:\s|^)';
|
||||
}
|
||||
$subchar = $firstchar;
|
||||
$wp_smiliessearch .= preg_quote($firstchar, '/') . '(?:';
|
||||
@@ -2520,7 +2520,7 @@ function smilies_init() {
|
||||
$wp_smiliessearch .= preg_quote($rest);
|
||||
}
|
||||
|
||||
$wp_smiliessearch .= ')(?:\s|$)/';
|
||||
$wp_smiliessearch .= ')(?:\s|$)/m';
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user