Code Duplication    Length = 5-5 lines in 2 locations

main/inc/lib/pear/HTML/Table/Storage.php 2 locations

@@ 809-813 (lines=5) @@
806
            $rowspan = $this->_structure[$row][$col]['attr']['rowspan'];
807
        }
808
809
        if (isset($colspan)) {
810
            for ($j = $col + 1; (($j < $this->_cols) && ($j <= ($col + $colspan - 1))); $j++) {
811
                $this->_structure[$row][$j] = '__SPANNED__';
812
            }
813
        }
814
815
        if (isset($rowspan)) {
816
            for ($i = $row + 1; (($i < $this->_rows) && ($i <= ($row + $rowspan - 1))); $i++) {
@@ 815-819 (lines=5) @@
812
            }
813
        }
814
815
        if (isset($rowspan)) {
816
            for ($i = $row + 1; (($i < $this->_rows) && ($i <= ($row + $rowspan - 1))); $i++) {
817
                $this->_structure[$i][$col] = '__SPANNED__';
818
            }
819
        }
820
821
        if (isset($colspan) && isset($rowspan)) {
822
            for ($i = $row + 1; (($i < $this->_rows) && ($i <= ($row + $rowspan - 1))); $i++) {