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/Pool.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/Pool.php')
| -rw-r--r-- | application/models/Pool.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/application/models/Pool.php b/application/models/Pool.php index 53e13e2..76c7a3b 100644 --- a/application/models/Pool.php +++ b/application/models/Pool.php @@ -52,6 +52,7 @@ class Application_Model_Pool public function setID($_poolID) { $this->_poolID = $_poolID; + return $this; } public function getTitle() { @@ -60,6 +61,7 @@ class Application_Model_Pool public function setTitle($_title) { $this->_title = $_title; + return $this; } public function getDescription() { @@ -68,6 +70,7 @@ class Application_Model_Pool public function setDescription($_description) { $this->_description = $_description; + return $this; } public function getLocation() { @@ -76,6 +79,7 @@ class Application_Model_Pool public function setLocation($_location) { $this->_location = $_location; + return $this; } } |
