-
Incident report
-
Resolution: Duplicate
-
Trivial
-
None
-
2.4.6, 3.0.0alpha2
No matter, what time range is set on the slider in filter, events in the resulting CSV file are generated by (time() - $period). Events in generated file differs from events showed on current screen.
patch:
--- events.php.bak +++ events.php if (hasRequest('stime')) { $stime = getRequest('stime'); - if ($stime + $period > time()) { + if (strtotime($stime) + $period > time()) { $stime = date(TIMESTAMP_FORMAT, time() - $period); } }
- duplicates
-
ZBX-10227 exporting events to CSV exports all host events, ignoring selected host
- Closed