AJAX, cause you love it. Props mdawaffe. fixes #2561

git-svn-id: https://develop.svn.wordpress.org/trunk@3660 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2006-03-29 01:51:55 +00:00
parent 6d474bde7a
commit cb23290318
24 changed files with 595 additions and 445 deletions

View File

@@ -101,7 +101,9 @@ function wp_specialchars( $text, $quotes = 0 ) {
$text = preg_replace('/&([^#])(?![a-z1-4]{1,8};)/', '&$1', $text);-
$text = str_replace('<', '&lt;', $text);
$text = str_replace('>', '&gt;', $text);
if ( $quotes ) {
if ( 'double' === $quotes ) {
$text = str_replace('"', '&quot;', $text);
} elseif ( $quotes ) {
$text = str_replace('"', '&quot;', $text);
$text = str_replace("'", '&#039;', $text);
}