Explorar el Código

+ Fixed header row for table

michael hace 21 años
padre
commit
cfde5a91a5
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      utils/fpdoc/fpde/pgeditor.pp

+ 3 - 3
utils/fpdoc/fpde/pgeditor.pp

@@ -514,10 +514,10 @@ begin
     If UseHeader then 
       begin
       Dec(Rows);
-      T:='<tr>';
+      T:='<th>';
       For I:=1 to Cols do
-        T:=T+'<th></th>';
-      T:=T+'</tr>'+lineEnding;  
+        T:=T+'<td></td>';
+      T:=T+'</th>'+lineEnding;  
       end;
     For I:=1 to rows do
       T:=T+R;