aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index e5362bc5c..d1821b639 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -845,7 +845,7 @@ function errorMessageInfo($errorTitle, $error = '') {
$details = '';
// Prevent empty tags by checking if error isn not empty first
if ($error) {
- $error = htmlspecialchars($error, ENT_NOQUOTES, 'UTF-8');
+ $error = htmlspecialchars($error, ENT_NOQUOTES, 'UTF-8') . "\n";
// First line is the main message, other lines are the details
list($message, $details) = explode("\n", $error, 2);