Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 1888-1894 (lines=7) @@
1885
                    if (!$firstword) {
1886
                        if ($space_left > 20) {
1887
                            $len = $space_left;
1888
                            if ($is_utf8) {
1889
                                $len = $this->utf8CharBoundary($word, $len);
1890
                            } elseif (substr($word, $len - 1, 1) == '=') {
1891
                                $len--;
1892
                            } elseif (substr($word, $len - 2, 1) == '=') {
1893
                                $len -= 2;
1894
                            }
1895
                            $part = substr($word, 0, $len);
1896
                            $word = substr($word, $len);
1897
                            $buf .= ' ' . $part;
@@ 1909-1915 (lines=7) @@
1906
                            break;
1907
                        }
1908
                        $len = $length;
1909
                        if ($is_utf8) {
1910
                            $len = $this->utf8CharBoundary($word, $len);
1911
                        } elseif (substr($word, $len - 1, 1) == '=') {
1912
                            $len--;
1913
                        } elseif (substr($word, $len - 2, 1) == '=') {
1914
                            $len -= 2;
1915
                        }
1916
                        $part = substr($word, 0, $len);
1917
                        $word = substr($word, $len);
1918