Browse Source

Fix inconsistent data referencing in View

Kelly Banman 13 years ago
parent
commit
a3cbe24b6e
1 changed files with 10 additions and 2 deletions
  1. 10 2
      laravel/view.php

+ 10 - 2
laravel/view.php

@@ -358,7 +358,7 @@ class View implements ArrayAccess {
 	 */
 	public function __get($key)
 	{
-		return $this[$key];
+		return $this->data[$key];
 	}
 
 	/**
@@ -366,7 +366,15 @@ class View implements ArrayAccess {
 	 */
 	public function __set($key, $value)
 	{
-		$this[$key] = $value;
+		$this->data[$key] = $value;
+	}
+
+	/**
+	 * Magic Method for checking dynamically-set data.
+	 */
+	public function __isset($key)
+	{
+		return isset($this->data[$key]);
 	}
 
 	/**