Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 1846-1852 (lines=7) @@
1843
                    if (!$firstword) {
1844
                        if ($space_left > 20) {
1845
                            $len = $space_left;
1846
                            if ($is_utf8) {
1847
                                $len = $this->utf8CharBoundary($word, $len);
1848
                            } elseif (substr($word, $len - 1, 1) == '=') {
1849
                                $len--;
1850
                            } elseif (substr($word, $len - 2, 1) == '=') {
1851
                                $len -= 2;
1852
                            }
1853
                            $part = substr($word, 0, $len);
1854
                            $word = substr($word, $len);
1855
                            $buf .= ' ' . $part;
@@ 1867-1873 (lines=7) @@
1864
                            break;
1865
                        }
1866
                        $len = $length;
1867
                        if ($is_utf8) {
1868
                            $len = $this->utf8CharBoundary($word, $len);
1869
                        } elseif (substr($word, $len - 1, 1) == '=') {
1870
                            $len--;
1871
                        } elseif (substr($word, $len - 2, 1) == '=') {
1872
                            $len -= 2;
1873
                        }
1874
                        $part = substr($word, 0, $len);
1875
                        $word = substr($word, $len);
1876