diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-12 19:08:25 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-12 19:08:25 +0200 |
commit | e2b4760e846e8b74f2f674e1fa25d82ba21e7a2e (patch) | |
tree | db3fe5ff936b512a919067c993177bf2912ecb26 | |
parent | b5bb6479bcd3a9c3e8a9fc5af730dd64a6e15966 (diff) |
Fix invalid closing tag
-rw-r--r-- | program/lib/Roundcube/rcube_text2html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_text2html.php b/program/lib/Roundcube/rcube_text2html.php index 5da771ac8..cb4390e5d 100644 --- a/program/lib/Roundcube/rcube_text2html.php +++ b/program/lib/Roundcube/rcube_text2html.php @@ -54,7 +54,7 @@ class rcube_text2html 'break' => "<br>\n", // prefix and suffix (wrapper element) 'begin' => '<div class="pre">', - 'end' => '</end>', + 'end' => '</div>', // enables links replacement 'links' => true, ); |