25 lines
656 B
PHP
25 lines
656 B
PHP
<?php
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
SHA1 hash of the info page password, the preset password is the
|
|
empty string. You might change it to keep this information private.
|
|
Online hash generator: http://www.sha1.cz/
|
|
*********************************************************************/
|
|
define("PASSHASH", "da39a3ee5e6b4b0d3255bfef95601890afd80709");
|
|
|
|
|
|
|
|
function normalized_require_once($lib) {
|
|
|
|
require_once(preg_replace("#[\\\\/]+#", "/", dirname(__FILE__) . "/inc/${lib}.php"));
|
|
}
|
|
|
|
function __autoload($class_name) {
|
|
|
|
normalized_require_once("class-" . strtolower($class_name));
|
|
}
|
|
|
|
Bootstrap::run();
|