From c2374d999d6d6611652af39a88176a090a9d1ffe Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Tue, 20 Feb 2018 18:56:02 +0100 Subject: [PATCH] Fix bug with simpleevents where the description didn't start with

tags --- src/pvv/side/simpleevent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pvv/side/simpleevent.php b/src/pvv/side/simpleevent.php index b23edea..a38f0f8 100644 --- a/src/pvv/side/simpleevent.php +++ b/src/pvv/side/simpleevent.php @@ -49,7 +49,7 @@ class SimpleEvent extends Event { } public function getDescription() { - return $this->descr; + return array_map(function ($item) {return "

".$item;}, $this->descr); } public function isDBEvent() {