Code

Fixed debug, to shown first line nr ....
[gosa.git] / include / class_divlist.inc
index 33a65dfff404788b4fe2969f8474155d88fab672..ab1efecae1dafe496775fc9a27529bfd445fca6d 100644 (file)
@@ -92,7 +92,7 @@ class divlist {
                
     // Using scrolltable?
     if($this->i_entriesPerPage == 0) {
-      $s_return .= "\n<tr><td class='scrollhead'><table style='width:".$this->s_width."px;' cellspacing='0'>";
+      $s_return .= "\n<tr><td class='scrollhead'><table summary='' style='width:".$this->s_width."px;' cellspacing='0'>";
     }
 
                $s_return .= "\n<tr>";
@@ -134,7 +134,7 @@ class divlist {
       // We need to construct a "body"-table that is width-of-scrollbar thinner than the "head"-table.
       $s_return .= "\n<tr><td colspan='".$this->cols."' class='scrollbody'><div style='width:".$this->s_width."px;height:".($this->s_height-20)."px;' class='scrollbody'>";
 
-      $s_return .= "<table style='height:100%;width:581px;' cellspacing='0'>";
+      $s_return .= "<table summary='' style='height:100%;width:581px;' cellspacing='0'>";
        }
  
     $i_alternate=0;
@@ -217,9 +217,9 @@ class divlist {
                                $cnt=0;
                                for($a = 0 ; $a < (count($this->a_header[0])) ; $a ++ ) {
                                        if($a ==(count($this->a_header[0])-1)){
-                                               $s_return.="\n<td class='list1' style='border:0px;' height='26'>&nbsp;</td>";
+                                               $s_return.="\n<td class='list1' style='border:0px;height:26px;'>&nbsp;</td>";
                                        } else {
-                                               $s_return.="\n<td class='list1' height='26'>&nbsp;</td>";
+                                               $s_return.="\n<td class='list1' style='height:26px;'>&nbsp;</td>";
                                        }
                                }
                                $s_return.="\n</tr>";
@@ -277,12 +277,12 @@ class divlist {
         $fill= "";
         for ($i= 1; $i <= $this->cols; $i++){
           if ($i == $this->cols){
-           $fill.= "<td class='list1' style='height:100%;border-right:0px';>&nbsp;</td>";
+           $fill.= "<td class='list1' style='height:100%;border-right:0px;'>&nbsp;</td>";
           } else {
            $fill.= "<td class='list1' style='height:100%;'>&nbsp;</td>";
           }
         }
-        $s_return.="\n<tr>$fill</tr>";
+        $s_return.="\n<tr>$fill";
       }
       if($this->i_entriesPerPage == 0) {
         $s_return .= "\n</table></div></td>";