From: Aryeh Gregor Date: Mon, 14 Jul 2008 21:43:27 +0000 (+0000) Subject: * (bug 13815) In the comment for page moves, use the colon-separator message instead... X-Git-Tag: 1.31.0-rc.0~46517 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=32e0e290a6de4173957cbc937e72613476a5c8cb;p=lhc%2Fweb%2Fwiklou.git * (bug 13815) In the comment for page moves, use the colon-separator message instead of a hardcoded colon. * So that this works properly, don't escape HTML entities in edit summaries. I don't see any good reason for them to be escaped there. Of course, this may result in old edit summaries displaying slightly differently if for some reason they included an entity, but in that case there's at least a 50% chance that they intended it to not be escaped in the first place. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1e47f50628..2217484cdd 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -186,6 +186,9 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN the database is potentially queried * (bug 9736) Redirects on Special:Fewestrevisions are now marked as such. * New date/time formats in Cs localization according to ČSN and PČP. +* HTML entities like   now work (are not escaped) in edit summaries. +* (bug 13815) In the comment for page moves, use the colon-separator message + instead of a hardcoded colon. === Bug fixes in 1.13 === diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 56a313fa0f..d90c6126ba 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -628,9 +628,7 @@ function wfMsgExt( $key, $options ) { if ( in_array('escape', $options) ) { $string = htmlspecialchars ( $string ); } elseif ( in_array( 'escapenoentities', $options ) ) { - $string = htmlspecialchars( $string ); - $string = str_replace( '&', '&', $string ); - $string = Sanitizer::normalizeCharReferences( $string ); + $string = Sanitizer::escapeHtmlAllowEntities( $string ); } if( in_array('replaceafter', $options) ) { diff --git a/includes/Linker.php b/includes/Linker.php index 03e7a9eb22..6f502cf51c 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1045,7 +1045,8 @@ class Linker { # Sanitize text a bit: $comment = str_replace( "\n", " ", $comment ); - $comment = htmlspecialchars( $comment ); + # Allow HTML entities (for bug 13815) + $comment = Sanitizer::escapeHtmlAllowEntities( $comment ); # Render autocomments and make links: $comment = $this->formatAutoComments( $comment, $title, $local ); diff --git a/includes/Sanitizer.php b/includes/Sanitizer.php index 28b1c27576..4d5b89c756 100644 --- a/includes/Sanitizer.php +++ b/includes/Sanitizer.php @@ -826,6 +826,22 @@ class Sanitizer { $class ), '_'); } + /** + * Given HTML input, escape with htmlspecialchars but un-escape entites. + * This allows (generally harmless) entities like   to survive. + * + * @param string $html String to escape + * @return string Escaped input + */ + static function escapeHtmlAllowEntities( $html ) { + # It seems wise to escape ' as well as ", as a matter of course. Can't + # hurt. + $html = htmlspecialchars( $html, ENT_QUOTES ); + $html = str_replace( '&', '&', $html ); + $html = Sanitizer::normalizeCharReferences( $html ); + return $html; + } + /** * Regex replace callback for armoring links against further processing. * @param array $matches diff --git a/includes/Title.php b/includes/Title.php index b64d2c9c87..d0b593ca72 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -2718,7 +2718,9 @@ class Title { $fname = 'MovePageForm::moveToNewTitle'; $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() ); if ( $reason ) { - $comment .= ": $reason"; + $comment .= wfMsgExt( 'colon-separator', + array( 'escapenoentities', 'content' ) ); + $comment .= $reason; } $newid = $nt->getArticleID();