diff options
author | alecpl <alec@alec.pl> | 2008-08-29 08:43:17 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-08-29 08:43:17 +0000 |
commit | 7789fddb79e20324224ca24de0c501d6c4f85631 (patch) | |
tree | edee4631f322899163608292c4ac7a67dff5afb2 /program | |
parent | 7353fab31669a0d2d6df7317afbce4c62b5f42ed (diff) |
- oops, fixed parse error from last change
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/html2text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/html2text.php b/program/lib/html2text.php index c42a5359e..b476555ba 100644 --- a/program/lib/html2text.php +++ b/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>', ' ', ' ', |