Fix typo in activity stream dashlet names

refs #6144
This commit is contained in:
Matthias Jentsch 2015-09-04 17:17:51 +02:00
parent fcd9315263
commit f73e6d9225

View File

@ -319,11 +319,11 @@ $dashboard->add(
'monitoring/list/eventhistory?timestamp>=-3%20days&type=notify&sort=timestamp&dir=desc&limit=8' 'monitoring/list/eventhistory?timestamp>=-3%20days&type=notify&sort=timestamp&dir=desc&limit=8'
); );
$dashboard->add( $dashboard->add(
$this->translate('Recent Downtimes Started'), $this->translate('Downtimes Recently Started'),
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_start&sort=timestamp&dir=desc&limit=8' 'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_start&sort=timestamp&dir=desc&limit=8'
); );
$dashboard->add( $dashboard->add(
$this->translate('Recent Downtimes Ended'), $this->translate('Downtimes Recently Ended'),
'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_end&sort=timestamp&dir=desc&limit=8' 'monitoring/list/eventhistory?timestamp>=-3%20days&type=dt_end&sort=timestamp&dir=desc&limit=8'
); );