forked from extern/egroupware
Don't modify filter columns with numeric keys
This commit is contained in:
parent
42bd4d227c
commit
30db6582f7
@ -144,7 +144,7 @@ class historylog
|
|||||||
}
|
}
|
||||||
foreach($filter as $col => $value)
|
foreach($filter as $col => $value)
|
||||||
{
|
{
|
||||||
if (substr($col,0,8) != 'history_')
|
if (!is_numeric($col) && substr($col,0,8) != 'history_')
|
||||||
{
|
{
|
||||||
$filter['history_'.$col] = $value;
|
$filter['history_'.$col] = $value;
|
||||||
unset($filter[$col]);
|
unset($filter[$col]);
|
||||||
|
Loading…
Reference in New Issue
Block a user