Index: configuration_event_handler.php =================================================================== --- configuration_event_handler.php (revision 13203) +++ configuration_event_handler.php (working copy) @@ -81,7 +81,7 @@ $object->SetFieldOptions('VariableValue', $new_field_options); // if password field is empty, then don't update - if ($object->GetDBField('element_type') == 'password') { + if ($object->GetDBField('ElementType') == 'password') { if (trim($object->GetDBField('VariableValue')) == '') { $field_options = $object->GetFieldOptions('VariableValue'); $field_options['skip_empty'] = 1; @@ -145,7 +145,7 @@ $object =& $event->getObject(); /* @var $object kDBItem */ - if ($object->GetDBField('element_type') == 'password') { + if ($object->GetDBField('ElementType') == 'password') { if (trim($object->GetDBField('VariableValue')) == '') { $field_options = $object->GetFieldOptions('VariableValue'); unset($field_options['skip_empty']);