OK I'm getting
[05-Feb-2007 15:45:01] PHP Fatal error: Call to a member function on a non-object in /opt/sugarcrm/htdocs/sugarcrm/data/SugarBean.php on line 779
while cron.php is running.
EDIT:
Line 779
$query .= $field."='".$GLOBALS['db']->quote(from_html($this->$field))."'";
Code:
// Try comparing this element with the head element.
if(0 == $firstPass) $firstPass = 1;
else $query .= ", ";
if(is_null($this->$field)) {
$query .= $field."=null";
}
else {
$query .= $field."='".$GLOBALS['db']->quote(from_html($this->$field))."'";
Bookmarks