forked from extern/egroupware
Corrected a incorrect field name in the where clause for the search string in list_instances call.
This commit is contained in:
parent
9172c8606e
commit
0af7e47978
@ -232,7 +232,7 @@ class ProcessMonitor extends Base {
|
|||||||
function monitor_list_instances($offset,$maxRecords,$sort_mode,$find,$where='',$wherevars='') {
|
function monitor_list_instances($offset,$maxRecords,$sort_mode,$find,$where='',$wherevars='') {
|
||||||
if($find) {
|
if($find) {
|
||||||
$findesc = $this->qstr('%'.$find.'%');
|
$findesc = $this->qstr('%'.$find.'%');
|
||||||
$mid=" where (`properties` like $findesc)";
|
$mid=" where (`wf_properties` like $findesc)";
|
||||||
} else {
|
} else {
|
||||||
$mid="";
|
$mid="";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user