* Fix for Addressbook History NOT showing old or new value for some custom fields (Stylite #8230)

This commit is contained in:
Nathan Gray 2010-10-14 15:08:05 +00:00
parent 87da090667
commit d261f92a75

View File

@ -2289,7 +2289,7 @@ class addressbook_ui extends addressbook_bo
$content['history']['status-widgets']['#'.$name] = $settings['type'];
} elseif($settings['values']['@']) {
$content['history']['status-widgets']['#'.$name] = customfields_widget::_get_options_from_file($settings['values']['@']);
} else {
} elseif(count($settings['values'])) {
$content['history']['status-widgets']['#'.$name] = $settings['values'];
}
}