summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_text2html.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-05-12 19:08:25 +0200
committerAleksander Machniak <alec@alec.pl>2014-05-12 19:08:25 +0200
commite2b4760e846e8b74f2f674e1fa25d82ba21e7a2e (patch)
treedb3fe5ff936b512a919067c993177bf2912ecb26 /program/lib/Roundcube/rcube_text2html.php
parentb5bb6479bcd3a9c3e8a9fc5af730dd64a6e15966 (diff)
Fix invalid closing tag
Diffstat (limited to 'program/lib/Roundcube/rcube_text2html.php')
-rw-r--r--program/lib/Roundcube/rcube_text2html.php2
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,
);