From 7512229bcaaf39dc2ca6e9b18770db04a6f800fa Mon Sep 17 00:00:00 2001 From: Björn Geiger Date: Thu, 27 Jan 2011 17:32:56 +0100 Subject: Getter und Setter für Models gesetzt --- application/models/BootIso.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'application/models/BootIso.php') diff --git a/application/models/BootIso.php b/application/models/BootIso.php index a9a88d8..3a411db 100644 --- a/application/models/BootIso.php +++ b/application/models/BootIso.php @@ -21,7 +21,7 @@ class Application_Model_BootIso { $method = 'set' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootiso property'); } $this->$method($value); } @@ -30,7 +30,7 @@ class Application_Model_BootIso { $method = 'get' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootiso property'); } return $this->$method(); } -- cgit v1.2.3-55-g7522