From be6d5f0455f1603ea08b92b6444721ea8869e4ac Mon Sep 17 00:00:00 2001 From: icewing Date: Thu, 6 Mar 2008 10:28:12 +0000 Subject: Marcus Povey * Fixed get/sets git-svn-id: https://code.elgg.org/elgg/trunk@87 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/annotations.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'engine/lib/annotations.php') diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 8a0438383..e73e04889 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -31,6 +31,8 @@ */ function __construct($id = null) { + $this->attributes = array(); + if (!empty($id)) { if ($id instanceof stdClass) $annotation = $id; @@ -47,23 +49,23 @@ } function __get($name) { - if (isset($attributes[$name])) { + if (isset($this->attributes[$name])) { // Sanitise outputs if required if ($name=='value') { - switch ($attributes['value_type']) + switch ($this->attributes['value_type']) { - case 'integer' : return (int)$attributes['value']; + case 'integer' : return (int)$this->attributes['value']; case 'tag' : case 'text' : - case 'file' : return sanitise_string($attributes['value']); + case 'file' : return sanitise_string($this->attributes['value']); - default : throw new InstallationException("Type {$attributes['value_type']} is not supported. This indicates an error in your installation, most likely caused by an incomplete upgrade."); + default : throw new InstallationException("Type {$this->attributes['value_type']} is not supported. This indicates an error in your installation, most likely caused by an incomplete upgrade."); } } - return $attributes[$name]; + return $this->attributes[$name]; } return null; } -- cgit v1.2.3