. */ define("BCR_BUILD", 1); session_start(); require_once(dirname(__FILE__)."/users.php"); $SimpleUsers = new SimpleUsers(); /* In order to make a BCR build via the Sencha Tools, the Sencha dependency checker opens the website. We must make sure that this always occurs via a logged in user, otherwise the check fails. Therefore login via the admin account. */ $SimpleUsers->loginUser('admin', 'admin'); if( !$SimpleUsers->logged_in ) { header("Location: login.php"); exit; } require_once("comics.php"); ?>