Skip to content

Commit

Permalink
Merge pull request #1480 from claroline/fixing-log-manager
Browse files Browse the repository at this point in the history
Fixing log manager.
  • Loading branch information
ngodfraind committed Mar 16, 2016
2 parents 73f6e46 + 2715be4 commit 895b20d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Manager/LogManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ protected function processFormData(
$userSearch = null;

if (array_key_exists('filter', $data)) {
$decodeFilter = json_decode(urldecode($data['filter']));
$decodeFilter = json_decode(urldecode($data['filter']), true);
if ($decodeFilter !== null) {
$action = $decodeFilter->action;
$range = $dateRangeToTextTransformer->reverseTransform($decodeFilter->range);
Expand Down

0 comments on commit 895b20d

Please sign in to comment.