fixed case of the bbcode parser path in Forum\Post (BBcode -> BBCode)

This commit is contained in:
flash 2016-08-07 16:47:30 +02:00
parent 9493413d67
commit 0493e3dcbb

View file

@ -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));
}
/**