diff --git a/bl-plugins/about/plugin.php b/bl-plugins/about/plugin.php index 7a1e5579..bb3eccb1 100644 --- a/bl-plugins/about/plugin.php +++ b/bl-plugins/about/plugin.php @@ -18,7 +18,6 @@ class pluginAbout extends Plugin { $html .= ''; $html .= ''; $html .= ''; - $html .= '
'; $html .= ''; $html .= ''; @@ -32,10 +31,10 @@ class pluginAbout extends Plugin { $html = '
'; $html .= '

'.$this->getDbField('label').'

'; $html .= '
'; - $html .= nl2br($this->getDbField('text')); + $html .= html_entity_decode(nl2br($this->getDbField('text'))); $html .= '
'; $html .= '
'; return $html; } -} \ No newline at end of file +}