Browse Source

move timezone set into core bootstrap.

Taylor Otwell 13 years ago
parent
commit
5b6b156b41
3 changed files with 9 additions and 9 deletions
  1. 1 1
      application/config/application.php
  2. 8 1
      laravel/core.php
  3. 0 7
      laravel/laravel.php

+ 1 - 1
application/config/application.php

@@ -110,7 +110,7 @@ return array(
 	| referring to the class using its full namespace, you may simply use
 	| the alias defined here.
 	|
-	| We have already aliased common Laravel classes to make your life easier.
+	| We have already aliased common Laravel classes to make life easier.
 	|
 	*/
 

+ 8 - 1
laravel/core.php

@@ -57,4 +57,11 @@ foreach ($bundles as $bundle => $value)
 	if (is_numeric($bundle)) $bundle = $value;
 
 	Bundle::register($bundle, $value);
-}
+}
+
+/**
+ * Register the default timezone for the application. This will
+ * be the default timezone used by all date functions through
+ * throughout the entire application.
+ */
+date_default_timezone_set(Config::get('application.timezone'));

+ 0 - 7
laravel/laravel.php

@@ -7,13 +7,6 @@
  */
 require 'core.php';
 
-/**
- * Register the default timezone for the application. This will be the
- * default timezone used by all date / timezone functions throughout
- * the entire application.
- */
-date_default_timezone_set(Config::get('application.timezone'));
-
 /**
  * Register the PHP exception handler. The framework throws exceptions
  * on every error that cannot be handled. All of those exceptions will