From e2b4760e846e8b74f2f674e1fa25d82ba21e7a2e Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 12 May 2014 13:08:25 -0400
Subject: [PATCH] Fix invalid closing tag
---
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 5da771a..cb4390e 100644
--- a/program/lib/Roundcube/rcube_text2html.php
+++ b/program/lib/Roundcube/rcube_text2html.php
@@ -54,7 +54,7 @@
'break' => "<br>\n",
// prefix and suffix (wrapper element)
'begin' => '<div class="pre">',
- 'end' => '</end>',
+ 'end' => '</div>',
// enables links replacement
'links' => true,
);
--
Gitblit v1.9.1