2
0
forked from Wavyzz/dolibarr

Fix: Space after closing parenthesis of function call prohibited

This commit is contained in:
Regis Houssin
2011-09-20 13:32:16 +00:00
parent 3af539e70a
commit 551e1f81bf
63 changed files with 324 additions and 324 deletions

View File

@@ -345,7 +345,7 @@ function array2table($data,$tableMarkup=1,$tableoptions='',$troptions='',$tdopti
if($tableMarkup) $text = '<table '.$tableoptions.'>' ;
foreach($data as $key => $item){
if(is_array($item)){
$text.=array2tr($item,$troptions,$tdoptions) ;
$text.=array2tr($item,$troptions,$tdoptions);
} else {
$text.= '<tr '.$troptions.'>' ;
$text.= '<td '.$tdoptions.'>'.$key.'</td>' ;