Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 801-803 (lines=3) @@
798
     */
799
    function _updateSpanGrid($row, $col)
800
    {
801
        if (isset($this->_structure[$row][$col]['attr']['colspan'])) {
802
            $colspan = $this->_structure[$row][$col]['attr']['colspan'];
803
        }
804
805
        if (isset($this->_structure[$row][$col]['attr']['rowspan'])) {
806
            $rowspan = $this->_structure[$row][$col]['attr']['rowspan'];
@@ 805-807 (lines=3) @@
802
            $colspan = $this->_structure[$row][$col]['attr']['colspan'];
803
        }
804
805
        if (isset($this->_structure[$row][$col]['attr']['rowspan'])) {
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++) {