Continued:
[core.git] / framework / bootstrap / bootstrap.inc.php
index 4c2ebd4286644e5ddc0c7419c8cf95ddb2803ddd..848e6898ffd80a234166cf3d4737123a81229986 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // Import framework stuff
-use CoreFramework\Bootstrap\BootstrapFramework;
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 
 /**
  * Start including this file to bootstrap into the framework
@@ -26,7 +26,7 @@ use CoreFramework\Bootstrap\BootstrapFramework;
  */
 
 // Load very basic classes, required to bootstrap
-require(__DIR__ . '/class_BootstrapFramework.php');
+require __DIR__ . '/class_FrameworkBootstrap.php';
 
 // Bootstrap framework
-BootstrapFramework::doBootstrap();
+FrameworkBootstrap::doBootstrap();