summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-29 08:43:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-08-29 08:43:17 +0000
commit005b74267801f83855f6d2f9001dd45bb2b652ed (patch)
treed000455aaca2c1e296f4062ad8864655af689fa6
parent17a1ade814b70f71f3bbb075227bfc78dfd92869 (diff)
- oops, fixed parse error from last change
git-svn-id: https://svn.roundcube.net/trunk@1696 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/lib/html2text.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/lib/html2text.php b/roundcubemail/program/lib/html2text.php
index c42a5359e..b476555ba 100644
--- a/roundcubemail/program/lib/html2text.php
+++ b/roundcubemail/program/lib/html2text.php
@@ -207,7 +207,7 @@ class html2text
* @access public
* @see $pre_replace
*/
- $pre_search = array(
+ var $pre_search = array(
"/\n/",
"/\t/",
'/ /',
@@ -222,7 +222,7 @@ class html2text
* @access public
* @see $pre_search
*/
- $pre_replace = array(
+ var $pre_replace = array(
'<br>',
'&nbsp;&nbsp;&nbsp;&nbsp;',
'&nbsp;',