X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=index.php;h=a131b22c886159f6f73e5d543a649793dcb6c4d5;hb=8b9a8edbddb77aae7af7988ad79e2e65d47f0242;hp=9ed67813974e1e65a410f59f77f92598666e51ec;hpb=ba30732d25e053969770906594528d46eb4bb9b0;p=mirrors%2FSokoMan.git diff --git a/index.php b/index.php index 9ed6781..a131b22 100755 --- a/index.php +++ b/index.php @@ -37,10 +37,10 @@ require_once('Fortune.php'); class HTML { function row($row,$type=false,$class=false,$parameters='',$colspan=array(),$rowspan=array(),$break_after=array()) { $html = ''; - $class = $class ? $class=" class='$class' " : ''; + $class_br = $class ? " class='$class' " : ''; + $class = $class ? " class='$class tr_nobr' " : ''; if($type) $html.="<$type>"; - $tr=""; - $html.=$tr; + $html.=""; $td = $type == 'thead' ? 'th' : 'td'; foreach($row as $id => $var) { $tdclass = " class='cell_$id'"; @@ -48,7 +48,7 @@ class HTML { $rs = isset($rowspan[$id]) ? " rowspan='$rowspan[$id]'" : ''; $cs = isset($colspan[$id]) ? " colspan='$colspan[$id]'" : ''; $html.="<$td$rs$cs$tdclass>$var"; - if(in_array($id,$break_after,true)) $html.=''.$tr; + if(in_array($id,$break_after,true)) $html.=''.""; } $html.=''; if($type) $html.=""; @@ -207,11 +207,14 @@ class Sklad_HTML extends HTML { //TODO: Split into few more methods