Code Duplication    Length = 7-7 lines in 2 locations

htdocs/class/mail/phpmailer/class.phpmailer.php 2 locations

@@ 1789-1795 (lines=7) @@
1786
                    if (!$firstword) {
1787
                        if ($space_left > 20) {
1788
                            $len = $space_left;
1789
                            if ($is_utf8) {
1790
                                $len = $this->utf8CharBoundary($word, $len);
1791
                            } elseif (substr($word, $len - 1, 1) == '=') {
1792
                                $len--;
1793
                            } elseif (substr($word, $len - 2, 1) == '=') {
1794
                                $len -= 2;
1795
                            }
1796
                            $part = substr($word, 0, $len);
1797
                            $word = substr($word, $len);
1798
                            $buf .= ' ' . $part;
@@ 1810-1816 (lines=7) @@
1807
                            break;
1808
                        }
1809
                        $len = $length;
1810
                        if ($is_utf8) {
1811
                            $len = $this->utf8CharBoundary($word, $len);
1812
                        } elseif (substr($word, $len - 1, 1) == '=') {
1813
                            $len--;
1814
                        } elseif (substr($word, $len - 2, 1) == '=') {
1815
                            $len -= 2;
1816
                        }
1817
                        $part = substr($word, 0, $len);
1818
                        $word = substr($word, $len);
1819