From: Sam Reed Date: Sun, 31 Jan 2010 23:10:57 +0000 (+0000) Subject: Rem extra brace from r61761 X-Git-Tag: 1.31.0-rc.0~38005 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=4b3f63b445504afcd27737a3e8f3b64387e96aa1;p=lhc%2Fweb%2Fwiklou.git Rem extra brace from r61761 --- 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 ) ) {