From 6e9e2ad368cbe8c698679bd68edbcbdab79fdf99 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Thu, 26 Feb 2009 00:27:24 -0500 Subject: [PATCH] $this->name ----> $this->$name --- framework/View/lib/Horde/View/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/View/lib/Horde/View/Base.php b/framework/View/lib/Horde/View/Base.php index 34a13caf0..f479c06a3 100644 --- a/framework/View/lib/Horde/View/Base.php +++ b/framework/View/lib/Horde/View/Base.php @@ -89,7 +89,7 @@ abstract class Horde_View_Base */ public function __get($name) { - return isset($this->name) ? $this->name : ''; + return isset($this->$name) ? $this->$name : ''; } /** -- 2.11.0