From 076fa175939ae1591002b6c066f87b87202d7a0b Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sat, 3 Nov 2012 16:58:50 +0100 Subject: [PATCH] Fix: missing colspan value --- htdocs/societe/soc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/societe/soc.php b/htdocs/societe/soc.php index 8bffd31ce4c..47238a3e8db 100644 --- a/htdocs/societe/soc.php +++ b/htdocs/societe/soc.php @@ -950,7 +950,7 @@ else } // Other attributes - $parameters=array('colspan' => ' colspan="3"'); + $parameters=array('colspan' => ' colspan="3"', 'colspanvalue' => '3'); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook if (empty($reshook) && ! empty($extrafields->attribute_label)) { @@ -1374,7 +1374,7 @@ else } // Other attributes - $parameters=array('colspan' => ' colspan="3"'); + $parameters=array('colspan' => ' colspan="3"', 'colspanvalue' => '3'); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook if (empty($reshook) && ! empty($extrafields->attribute_label)) {