diff --git a/RELEASE-NOTES b/RELEASE-NOTES index ac50703085b..25279175e19 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -66,6 +66,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN disabling upload protection by removing it from $wgRestrictionTypes. * If an edit summary exceeds 250 bytes and is truncated, add an ellipse * (bug 26638) Database error pages display correctly in RTL languages +* (bug 26187) Confirmrecreate no longer parses the edit summary === API changes in 1.18 === * (bug 26339) Throw warning when truncating an overlarge API result diff --git a/includes/EditPage.php b/includes/EditPage.php index 30e01e752c7..7b72c51a351 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1273,9 +1273,14 @@ HTML $this->showFormBeforeText(); if ( $this->wasDeletedSinceLastEdit() && 'save' == $this->formtype ) { + $username = $this->lastDelete->user_name; + $comment = $this->lastDelete->log_comment; + + // It is better to not parse the comment at all than to have templates expanded in the middle + // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used? $wgOut->addHTML( '