diff options
| author | Simon | 2011-03-02 15:09:46 +0100 |
|---|---|---|
| committer | Simon | 2011-03-02 15:09:46 +0100 |
| commit | 5d161755f849a2ec6b3ba80ea5690dd5c61f79d8 (patch) | |
| tree | ff335f2e773f581512a135c3d3fbb141f55493bd /application/models/Right.php | |
| parent | einricht script wegen mysql-pw geupdated (diff) | |
| download | pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.gz pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.xz pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.zip | |
Die Models geändert da kein return der Objekte angegeben war && FilterController
Diffstat (limited to 'application/models/Right.php')
| -rw-r--r-- | application/models/Right.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/models/Right.php b/application/models/Right.php index ebb3430..ad1821e 100644 --- a/application/models/Right.php +++ b/application/models/Right.php @@ -51,6 +51,7 @@ class Application_Model_Right public function setID($_rightID) { $this->_rightID = $_rightID; + return $this; } public function getTitle() { @@ -59,6 +60,7 @@ class Application_Model_Right public function setTitle($_title) { $this->_title = $_title; + return $this; } public function getDescription() { @@ -67,6 +69,7 @@ class Application_Model_Right public function setDescription($_description) { $this->_description = $_description; + return $this; } } |
