From e220d83381808ec98b4f32b85dc546904602799d Mon Sep 17 00:00:00 2001 From: Platonides Date: Sun, 27 Nov 2011 16:28:54 +0000 Subject: [PATCH] Bug 32673: Keep the username in the input field if not existing We could also add on LogEventsList.php line 870 $this->performer = $name; but that method is also used to build the query, which we don't want to affect. --- includes/specials/SpecialLog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialLog.php b/includes/specials/SpecialLog.php index b140a1750b..0c670f5c5c 100644 --- a/includes/specials/SpecialLog.php +++ b/includes/specials/SpecialLog.php @@ -144,7 +144,7 @@ class SpecialLog extends SpecialPage { } # Show form options - $loglist->showOptions( $pager->getType(), $pager->getPerformer(), $pager->getPage(), $pager->getPattern(), + $loglist->showOptions( $pager->getType(), $opts->getValue( 'user' ), $pager->getPage(), $pager->getPattern(), $pager->getYear(), $pager->getMonth(), $pager->getFilterParams(), $opts->getValue( 'tagfilter' ) ); # Insert list -- 2.20.1