Skip to content

Commit

Permalink
monitoring: Fix renamed index in the ServicecommentdeletionhistoryQuery
Browse files Browse the repository at this point in the history
refs #9956
  • Loading branch information
lippserd committed Sep 29, 2015
1 parent e8ce410 commit 1f040df
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ protected function joinBaseTables()
{
parent::joinBaseTables();
$this->select->where("sch.deletion_time > '1970-01-02 00:00:00'");
$this->columnMap['history']['timestamp'] = str_replace(
$this->columnMap['commenthistory']['timestamp'] = str_replace(
'comment_time',
'deletion_time',
$this->columnMap['history']['timestamp']
);
$this->columnMap['history']['type'] = str_replace(
$this->columnMap['commenthistory']['type'] = str_replace(
'END)',
"END || '_deleted')",
$this->columnMap['history']['type']
$this->columnMap['commenthistory']['type']
);
}
}

0 comments on commit 1f040df

Please sign in to comment.