From: Aaron Schulz Date: Sat, 27 Jun 2009 10:17:01 +0000 (+0000) Subject: Fill in log_user_text column on log save X-Git-Tag: 1.31.0-rc.0~41193 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=97a54fd112603a969a8bd098098c4718b3c8d657;p=lhc%2Fweb%2Fwiklou.git Fill in log_user_text column on log save --- 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,