From 14c8878b67444afa39aec083f09b4dc2e26e6cd0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 26 Jul 2011 14:36:47 -0500 Subject: [PATCH] Switch make call to static in partial method. --- system/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/view.php b/system/view.php index 8f6d5197..798e7f6b 100644 --- a/system/view.php +++ b/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)); } /**