diff options
author | alecpl <alec@alec.pl> | 2009-04-05 09:48:07 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-05 09:48:07 +0000 |
commit | 5a3f5852aa2fe5704b4ae3a066fd64044fbde970 (patch) | |
tree | f926aa51f73a442c719a956247f064a9efe8bc56 /program/lib | |
parent | 6491ed9bbce5eadad5aa433014cb53c50a5aa2f5 (diff) |
- Fix compose window doesn't fit 1024x768 window (#1485396)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/html2text.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/lib/html2text.php b/program/lib/html2text.php index e78ea10a9..dbf0943d5 100644 --- a/program/lib/html2text.php +++ b/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++; |