Update extrafields_edit.tpl.php

This commit is contained in:
ptibogxiv 2021-07-26 14:52:24 +02:00 committed by GitHub
parent a181469ff8
commit d443485939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object,
print $hookmanager->resPrint;
if (empty($reshook)) {
$params = array();
$params['cols'] = $parameters['colspanvalue'];
$params['cols'] =isset($parameters[ 'colspanvalue' ]) ? $parameters[ 'colspanvalue' ] : null;
print $object->showOptionals($extrafields, 'edit', $params);
}