mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-20 05:31:37 +01:00
do NOT return empty, if old_template is not set on initial call
This commit is contained in:
parent
46277505c5
commit
374dcb5d64
@ -406,7 +406,7 @@ class infolog_ui
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Template change forces the UI to do a full update first, no point in getting rows right now
|
// Template change forces the UI to do a full update first, no point in getting rows right now
|
||||||
if($old_template != $query['template']) return 0;
|
if($old_template && $old_template != $query['template']) return 0;
|
||||||
|
|
||||||
// do we need to read the custom fields, depends on the column is enabled and customfields exist, prefs are filter specific
|
// do we need to read the custom fields, depends on the column is enabled and customfields exist, prefs are filter specific
|
||||||
// so we have to check that as well
|
// so we have to check that as well
|
||||||
|
Loading…
Reference in New Issue
Block a user