K
Kirby
Guest
PHP:
Read more
Continue reading...
Code:
public function displayFatalExceptionMessage($e)
{
$upgradePending = $this->hasPendingUpgrade();
$isInstalled = \XF\Util\File::installLockExists();
$ignorePendingUpgrade = (!$isInstalled || $this->ignorePendingUpgrade || $this->forceShowTrace);
if (\XF::$debugMode || !$isInstalled || $this->forceShowTrace)
{
$showTrace = true;
}
else
{
$showTrace = false;
try
{
$visitor = \XF::visitor();
$showTrace...
Read more
Continue reading...