summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-01-27 17:32:56 +0100
committerBjörn Geiger2011-01-27 17:32:56 +0100
commit7512229bcaaf39dc2ca6e9b18770db04a6f800fa (patch)
treea384ee6a40ce37d7b273cfa3309fb420f93fb9cf /application/models/BootIso.php
parentBootEntries entfernt (diff)
downloadpbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.tar.gz
pbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.tar.xz
pbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.zip
Getter und Setter für Models gesetzt
Diffstat (limited to 'application/models/BootIso.php')
-rw-r--r--application/models/BootIso.php4
1 files changed, 2 insertions, 2 deletions
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();
}