From 0493e3dcbb2a60bda0b763cf00460cf20e59ed01 Mon Sep 17 00:00:00 2001 From: flashwave Date: Sun, 7 Aug 2016 16:47:30 +0200 Subject: [PATCH] fixed case of the bbcode parser path in Forum\Post (BBcode -> BBCode) --- app/Forum/Post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Forum/Post.php b/app/Forum/Post.php index 784059d..82d1af5 100644 --- a/app/Forum/Post.php +++ b/app/Forum/Post.php @@ -6,7 +6,7 @@ namespace Sakura\Forum; -use Sakura\BBcode; +use Sakura\BBCode\Parser as BBParser; use Sakura\DB; use Sakura\Exception; use Sakura\Net; @@ -125,7 +125,7 @@ class Post } // Parse the markup - $this->parsed = BBCode\Parser::toHTML(htmlentities($this->text)); + $this->parsed = BBParser::toHTML(htmlentities($this->text)); } /**