Quote:
Originally Posted by Meister2017
|
In addition to my adjustments, I have the following changes:
includes/init.php
Code:
// $new_datastore_fetch does not require single quotes
$new_datastore_fetch = $datastore_fetch = array();
($hook = vBulletinHook::fetch_hook('init_startup')) ? eval($hook) : false;
replace with:
Code:
// $new_datastore_fetch does not require single quotes
$new_datastore_fetch = $datastore_fetch = array();
if(!defined('THIS_SCRIPT')) /* PHP 7.2 FIX */
define('THIS_SCRIPT', 'THIS_SCRIPT');
($hook = vBulletinHook::fetch_hook('init_startup')) ? eval($hook) : false;
Attention: PHP 7.0 is the minimum by this change