Browse Source

fixing bug in view class.

Taylor Otwell 12 years ago
parent
commit
d41b1db722
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/view.php

+ 1 - 1
laravel/view.php

@@ -320,7 +320,7 @@ class View implements ArrayAccess {
 		// The contents of each view file is cached in an array for the
 		// The contents of each view file is cached in an array for the
 		// request since partial views may be rendered inside of for
 		// request since partial views may be rendered inside of for
 		// loops which could incur performance penalties.
 		// loops which could incur performance penalties.
-		$__content = $this->load();
+		$__contents = $this->load();
 
 
 		ob_start() and extract($__data, EXTR_SKIP);
 		ob_start() and extract($__data, EXTR_SKIP);