From: Michael J. Rubinsky Date: Thu, 26 Feb 2009 05:27:24 +0000 (-0500) Subject: $this->name ----> $this->$name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6e9e2ad368cbe8c698679bd68edbcbdab79fdf99;p=horde.git $this->name ----> $this->$name --- 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 : ''; } /**