XenForo
Administrative
- Thread starter
- Admin
- #1
If
PHP:
ادامه مطلب...
$forum
is null, then the code which uses $forumTypeHandler
which is on all branches after fetching it from $forum
; will be accessing a method on a null
object instead of throwing/logging a useful/standard error message.PHP:
Code:
$forumTypeHandler = $forum ? $forum->TypeHandler : null;
if (!$this->discussion_type)
{
...
ادامه مطلب...