Eventgrid: Fetch the user's filter directly from the URL

refs #9029
This commit is contained in:
Johannes Meyer 2015-08-13 12:11:01 +02:00
parent 2e7ff7dd6e
commit ad20d35e78
2 changed files with 1 additions and 2 deletions

View File

@ -627,7 +627,6 @@ class Monitoring_ListController extends Controller
->handleRequest($this->getRequest());
$this->setupFilterControl($editor);
$this->view->filter = $editor->getFilter();
$this->handleFormatRequest($dataView);
return $dataView;

View File

@ -68,7 +68,7 @@ foreach ($summary as $entry) {
Filter::expression('timestamp', '<', strtotime($day . ' 23:59:59')),
Filter::expression('timestamp', '>', strtotime($day . ' 00:00:00')),
$form->getFilter(),
$filter
Filter::fromQueryString($this->url()->getParams()->toString())
);
$data[$day] = array(
'value' => $value,