diff options
author | thomascube <thomas@roundcube.net> | 2006-02-05 16:35:40 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-02-05 16:35:40 +0000 |
commit | 88375ff9807785a5843b47e2312d76eef66e0f62 (patch) | |
tree | 42fe5ac1719beb426f0f8bcac2dbe95300dc347f /program/include | |
parent | bde645fdf1fef55ba8da8657918363fc237fb969 (diff) |
Added RSS output (experimental)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index ac612cd06..aa6a60790 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -813,6 +813,7 @@ function rep_specialchars_output($str, $enctype='', $mode='', $newlines=TRUE) if (!$js_rep_table) { $js_rep_table = $rtf_rep_table = $xml_rep_table = array(); + $xml_rep_table['&'] = '&'; for ($c=160; $c<256; $c++) // can be increased to support more charsets { |