Browse Source

Switch make call to static in partial method.

Taylor Otwell 13 years ago
parent
commit
14c8878b67
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/view.php

+ 1 - 1
system/view.php

@@ -127,7 +127,7 @@ class View {
 	 */
 	public function partial($key, $view, $data = array())
 	{
-		return $this->bind($key, View::make($view, $data));
+		return $this->bind($key, static::make($view, $data));
 	}
 
 	/**