fixed case of the bbcode parser path in Forum\Post (BBcode -> BBCode)
This commit is contained in:
parent
9493413d67
commit
0493e3dcbb
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
namespace Sakura\Forum;
|
namespace Sakura\Forum;
|
||||||
|
|
||||||
use Sakura\BBcode;
|
use Sakura\BBCode\Parser as BBParser;
|
||||||
use Sakura\DB;
|
use Sakura\DB;
|
||||||
use Sakura\Exception;
|
use Sakura\Exception;
|
||||||
use Sakura\Net;
|
use Sakura\Net;
|
||||||
|
@ -125,7 +125,7 @@ class Post
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse the markup
|
// Parse the markup
|
||||||
$this->parsed = BBCode\Parser::toHTML(htmlentities($this->text));
|
$this->parsed = BBParser::toHTML(htmlentities($this->text));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Reference in a new issue