Browse Source

moved functions to helpers file.

Taylor Otwell 13 years ago
parent
commit
0dc43490a6
2 changed files with 3 additions and 3 deletions
  1. 1 1
      laravel/bootstrap/core.php
  2. 2 2
      laravel/helpers.php

+ 1 - 1
laravel/bootstrap/core.php

@@ -78,4 +78,4 @@ spl_autoload_register(array('Laravel\\Autoloader', 'load'));
  * Define a few global convenience functions to make our lives as
  * Define a few global convenience functions to make our lives as
  * Laravel PHP developers a little more easy and enjoyable.
  * Laravel PHP developers a little more easy and enjoyable.
  */
  */
-require 'functions'.EXT;
+require SYS_PATH.'helpers'.EXT;

+ 2 - 2
laravel/bootstrap/functions.php → laravel/helpers.php

@@ -10,7 +10,7 @@
  */
  */
 function e($value)
 function e($value)
 {
 {
-	return HTML::entities($value);
+	return Laravel\HTML::entities($value);
 }
 }
 
 
 /**
 /**
@@ -23,5 +23,5 @@ function e($value)
  */
  */
 function __($key, $replacements = array(), $language = null)
 function __($key, $replacements = array(), $language = null)
 {
 {
-	return Lang::line($key, $replacements, $language);
+	return Laravel\Lang::line($key, $replacements, $language);
 }
 }