diff options
| author | Björn Geiger | 2011-01-27 17:32:56 +0100 |
|---|---|---|
| committer | Björn Geiger | 2011-01-27 17:32:56 +0100 |
| commit | 7512229bcaaf39dc2ca6e9b18770db04a6f800fa (patch) | |
| tree | a384ee6a40ce37d7b273cfa3309fb420f93fb9cf /application/models/BootMenuEntries.php | |
| parent | BootEntries entfernt (diff) | |
| download | pbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.tar.gz pbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.tar.xz pbs2-7512229bcaaf39dc2ca6e9b18770db04a6f800fa.zip | |
Getter und Setter für Models gesetzt
Diffstat (limited to 'application/models/BootMenuEntries.php')
| -rw-r--r-- | application/models/BootMenuEntries.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php index 4ae24eb..0d2b5cd 100644 --- a/application/models/BootMenuEntries.php +++ b/application/models/BootMenuEntries.php @@ -13,7 +13,7 @@ class Application_Model_BootMenuEntries { $method = 'set' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootmenuentries property'); } $this->$method($value); } @@ -22,7 +22,7 @@ class Application_Model_BootMenuEntries { $method = 'get' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootmenuentries property'); } return $this->$method(); } |
