From d9476e03e2884f33c6892a10a441e10db4e01d18 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 3 Nov 2006 12:54:58 +0000 Subject: [PATCH] * (bug 7550) Normalize user parameter normally on Special:Log --- RELEASE-NOTES | 1 + includes/SpecialLog.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.20.1