Merge pull request #1205 from marcoAntonioNina/BUG-10407

BUG 10407: Al ingresar al Case Tracker se evidencia que en el... SOLVED
This commit is contained in:
julceslauhub
2013-01-17 12:52:53 -08:00

View File

@@ -440,7 +440,11 @@ class propelTable
$this->xmlForm->setValues( $result );
//var_dump($fieldName, $fieldClass );echo '<br /><br />';
if (array_search( 'renderTable', get_class_methods( $fieldClass ) ) !== false) {
$htmlField = $this->xmlForm->fields[$fieldName]->renderTable( $value, $this->xmlForm, true );
if ($value == '-') {
$htmlField = $value;
} else {
$htmlField = $this->xmlForm->fields[$fieldName]->renderTable( $value, $this->xmlForm, true );
}
if (is_object( $value )) {
$value = '';
}