From 97a54fd112603a969a8bd098098c4718b3c8d657 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 27 Jun 2009 10:17:01 +0000 Subject: [PATCH] Fill in log_user_text column on log save --- includes/LogPage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/LogPage.php b/includes/LogPage.php index 762e775ae4..f6d29aaf75 100644 --- a/includes/LogPage.php +++ b/includes/LogPage.php @@ -66,6 +66,7 @@ class LogPage { 'log_action' => $this->action, 'log_timestamp' => $dbw->timestamp( $now ), 'log_user' => $this->doer->getId(), + 'log_user_text' => $this->doer->getName(), 'log_namespace' => $this->target->getNamespace(), 'log_title' => $this->target->getDBkey(), 'log_comment' => $this->comment, -- 2.20.1