From 4b3f63b445504afcd27737a3e8f3b64387e96aa1 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 31 Jan 2010 23:10:57 +0000 Subject: [PATCH] Rem extra brace from r61761 --- includes/api/ApiQueryRecentChanges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryRecentChanges.php b/includes/api/ApiQueryRecentChanges.php index 6fc5099e36..2c6798299a 100644 --- a/includes/api/ApiQueryRecentChanges.php +++ b/includes/api/ApiQueryRecentChanges.php @@ -350,7 +350,7 @@ class ApiQueryRecentChanges extends ApiQueryBase { $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rc_timestamp ); /* Add edit summary / log summary. */ - if ( $this->fld_comment && isset( $row->rc_comment ) ) { + if ( $this->fld_comment && isset( $row->rc_comment ) ) $vals['comment'] = $row->rc_comment; if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) { -- 2.20.1