Corrected a incorrect field name in the where clause for the search string in list_instances call.

This commit is contained in:
Michael Bartz 2005-01-14 02:49:08 +00:00
parent 9172c8606e
commit 0af7e47978

View File

@ -232,7 +232,7 @@ class ProcessMonitor extends Base {
function monitor_list_instances($offset,$maxRecords,$sort_mode,$find,$where='',$wherevars='') {
if($find) {
$findesc = $this->qstr('%'.$find.'%');
$mid=" where (`properties` like $findesc)";
$mid=" where (`wf_properties` like $findesc)";
} else {
$mid="";
}