Commit 7555fda5 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #1307 from tillsanders/develop

Update laravel/helpers.php
parents 8faf38ef 00d1baf6
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
*/ */
function e($value) function e($value)
{ {
return Laravel\HTML::entities($value); return HTML::entities($value);
} }
/** /**
...@@ -23,7 +23,7 @@ function e($value) ...@@ -23,7 +23,7 @@ function e($value)
*/ */
function __($key, $replacements = array(), $language = null) function __($key, $replacements = array(), $language = null)
{ {
return Laravel\Lang::line($key, $replacements, $language); return Lang::line($key, $replacements, $language);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment