Fix View's use of Events so you can actually implement your own things

Signed-off-by: Phill Sparks <me@phills.me.uk>
This commit is contained in:
Phill Sparks
2012-05-04 12:35:24 +01:00
parent e85ca96e38
commit 0baf5ad9b1
3 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ class Blade {
// return false so the View can be rendered as normal.
if ( ! str_contains($view->path, BLADE_EXT))
{
return false;
return;
}
$compiled = path('storage').'views/'.md5($view->path);