Browse Source

tweaking key setting.

Taylor Otwell 13 years ago
parent
commit
6e83add76f
3 changed files with 1 additions and 23 deletions
  1. 0 12
      laravel/core.php
  2. 1 3
      laravel/laravel.php
  3. 0 8
      paths.php

+ 0 - 12
laravel/core.php

@@ -64,18 +64,6 @@ if (isset($_SERVER['CLI']['ENV']))
 	$_SERVER['LARAVEL_ENV'] = $_SERVER['CLI']['ENV'];
 	$_SERVER['LARAVEL_ENV'] = $_SERVER['CLI']['ENV'];
 }
 }
 
 
-/**
- * Call the bootstrap Closure that was defined in the start.php
- * file for the framework. This allows events and more to be
- * registered extremely early in the life cycle.
- */
-if (isset($bootstrap))
-{
-	call_user_func($bootstrap);
-
-	unset($bootstrap);
-}
-
 /**
 /**
  * Register all of the core class aliases. These aliases provide a
  * Register all of the core class aliases. These aliases provide a
  * convenient way of working with the Laravel core classes without
  * convenient way of working with the Laravel core classes without

+ 1 - 3
laravel/laravel.php

@@ -57,9 +57,7 @@ ini_set('display_errors', Config::get('error.display'));
  * string for the developer. This provides the developer with
  * string for the developer. This provides the developer with
  * a zero configuration install process.
  * a zero configuration install process.
  */
  */
-$key = Config::get('application.key');
-
-if ($key == '' and Config::get('key.auto'))
+if (Config::get('application.key') == '')
 {
 {
 	ob_start() and with(new CLI\Tasks\Key)->generate();
 	ob_start() and with(new CLI\Tasks\Key)->generate();
 
 

+ 0 - 8
paths.php

@@ -58,14 +58,6 @@ else
 	$paths['public'] = 'public';
 	$paths['public'] = 'public';
 }
 }
 
 
-// --------------------------------------------------------------
-// Define a bootstrap Closure that runs on core load.
-// --------------------------------------------------------------
-$bootstrap = function()
-{
-	Laravel\Config::set('key.auto', true);	
-};
-
 // --------------------------------------------------------------
 // --------------------------------------------------------------
 // Define each constant if it hasn't been defined.
 // Define each constant if it hasn't been defined.
 // --------------------------------------------------------------
 // --------------------------------------------------------------