From: Brion Vibber Date: Fri, 3 Nov 2006 12:54:58 +0000 (+0000) Subject: * (bug 7550) Normalize user parameter normally on Special:Log X-Git-Tag: 1.31.0-rc.0~55296 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=d9476e03e2884f33c6892a10a441e10db4e01d18;p=lhc%2Fweb%2Fwiklou.git * (bug 7550) Normalize user parameter normally on Special:Log --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 193722bcbe..4f7e15b9f3 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -130,6 +130,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN pagecategorieslink message. * Sort the list of skins in "My Preferences" -> Skins by alphabetical order. * (bug 7785) Postgres compatibility for timestamps in RC feeds +* (bug 7550) Normalize user parameter normally on Special:Log == Languages updated == diff --git a/includes/SpecialLog.php b/includes/SpecialLog.php index 81188aa0c1..10d1d89cb6 100644 --- a/includes/SpecialLog.php +++ b/includes/SpecialLog.php @@ -97,7 +97,7 @@ class LogReader { function limitUser( $name ) { if ( $name == '' ) return false; - $usertitle = Title::makeTitle( NS_USER, $name ); + $usertitle = Title::makeTitleSafe( NS_USER, $name ); if ( is_null( $usertitle ) ) return false; $this->user = $usertitle->getText();