Fix missing Context::init() in common script

This commit is contained in:
Kijin Sung 2023-08-12 21:17:52 +09:00
parent 47996cb294
commit 911772393a

View file

@ -25,6 +25,7 @@ if (PHP_SAPI !== 'cli')
// Load Rhymix.
chdir(dirname(dirname(__DIR__)));
require_once dirname(__DIR__) . '/autoload.php';
Context::init();
// Abort if the UID does not match.
$uid = Rhymix\Framework\Storage::getServerUID();