Filter by 'active user' option does not work

So we have a report where the filter is Assigned User ‘is one of’ ‘active user
This is not working on our CRM’S. Is this a known bug or feature that is not yet implemented?
Thanks

Simon,
it’s an unknown bug. Thank you for reporting.
Looking for a fix.

Val

1 Like

Fix will be published with KReporter 4.4
Add/replace following code in modules/KReports/KReportQuery.php on line 1613
if (is_string($value) && $value == ‘current_user_id’) { //bug fix 2018-04-18 maretval: check on string!
$value = $current_user->user_name;
}
//bug fix 2018-06-13: $value might be an array!
if (is_array($value) && $value[0] == ‘current_user_id’) {
$value = $current_user->user_name;
}

Val

1 Like