fix: [logs] Fixed bug in paginating logs

feature/event-view-collapsible-objects
Sami Mokaddem 2024-04-29 14:11:44 +02:00
parent 002749d5d9
commit 021ae24e3f
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 3 additions and 0 deletions

View File

@ -120,6 +120,9 @@ class LogsController extends AppController
if ($key === 'created') {
$key = 'created >=';
}
if ($key == 'page' || $key == 'limit') {
continue;
}
$this->paginate['conditions']["Log.$key"] = $value;
}
$this->set('validFilters', $validFilters);