diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-05 09:48:07 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-05 09:48:07 +0000 |
| commit | a403f0d121d8739c1dd56d6cc589e1cddd1a591c (patch) | |
| tree | ac7f61a7c0045cd1da1d4b846a091f9563d05ec5 /roundcubemail/program/lib | |
| parent | 956dd418c02d74c5d74bd4b7adcc95725fe0e8ea (diff) | |
- Fix compose window doesn't fit 1024x768 window (#1485396)
git-svn-id: https://svn.roundcube.net/trunk@2374 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib')
| -rw-r--r-- | roundcubemail/program/lib/html2text.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/lib/html2text.php b/roundcubemail/program/lib/html2text.php index e78ea10a9..dbf0943d5 100644 --- a/roundcubemail/program/lib/html2text.php +++ b/roundcubemail/program/lib/html2text.php @@ -522,9 +522,9 @@ class html2text $this->_link_count++; $this->_link_list .= "[" . $this->_link_count . "] $link\n"; $additional = ' [' . $this->_link_count . ']'; - } elseif ( substr($link, 0, 11) == 'javascript:' ) { - // Don't count the link; ignore it - $additional = ''; + } elseif ( substr($link, 0, 11) == 'javascript:' ) { + // Don't count the link; ignore it + $additional = ''; // what about href="#anchor" ? } else { $this->_link_count++; |
