bringing class loader in order

This commit is contained in:
Sebastian Grewe 2013-05-13 23:29:19 +02:00
parent fd6d0c0948
commit 38d2d5abd7

View File

@ -7,8 +7,12 @@ require_once(INCLUDE_DIR . '/smarty.inc.php');
// Load classes that need the above as dependencies
require_once(CLASS_DIR . '/block.class.php');
require_once(CLASS_DIR . '/user.class.php');
require_once(CLASS_DIR . '/worker.class.php');
require_once(CLASS_DIR . '/share.class.php');
require_once(CLASS_DIR . '/worker.class.php');
require_once(CLASS_DIR . '/statistics.class.php');
require_once(CLASS_DIR . '/transaction.class.php');
require_once(CLASS_DIR . '/settings.class.php');
// Use Memcache to store our data
$memcache = new Memcached();
$memcache->addServer('localhost', 11211);