]> git.mxchange.org Git - hub.git/blobdiff - application/hub/init.php
Fixed small comment + added note for php-scrypt
[hub.git] / application / hub / init.php
index 6a32f44d8c546205666ea55b0a6400b51216cdae..1c750dc767578fcc8de7ab8ad209ff0151a469a1 100644 (file)
@@ -28,7 +28,7 @@
 $cfg = FrameworkConfiguration::getSelfInstance();
 
 // Initialize output system
-require($cfg->getConfigEntry('base_path') . 'inc/output.php');
+ApplicationHelper::createDebugInstance('ApplicationHelper');
 
 // This application needs a database connection then we have to simply include
 // the inc/database.php script
@@ -37,5 +37,8 @@ require($cfg->getConfigEntry('base_path') . 'inc/database.php');
 // Get own internal address and set it in config
 $cfg->setConfigEntry('internal_address', HubTools::determineOwnInternalAddress());
 
+// By default scrypt is assumed absent and later tested being there
+$cfg->setConfigEntry('extension_scrypt_loaded', FALSE);
+
 // [EOF]
 ?>