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/Session.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/Session.php')
| -rw-r--r-- | application/models/Session.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/application/models/Session.php b/application/models/Session.php index 2820afe..73b6b4d 100644 --- a/application/models/Session.php +++ b/application/models/Session.php @@ -54,6 +54,7 @@ class Application_Model_Session public function setID($_sessionID) { $this->_sessionID = $_sessionID; + return $this; } public function getClientID() { @@ -62,6 +63,7 @@ class Application_Model_Session public function setClientID($_clientID) { $this->_clientID = $_clientID; + return $this; } public function getBootosID() { @@ -70,6 +72,7 @@ class Application_Model_Session public function setBootosID($_bootosID) { $this->_bootosID = $_bootosID; + return $this; } public function getTime() { @@ -78,6 +81,7 @@ class Application_Model_Session public function setTime($_time) { $this->_time = $_time; + return $this; } public function getIp() { @@ -86,6 +90,7 @@ class Application_Model_Session public function setIp($_ip) { $this->_ip = $_ip; + return $this; } public function getIp6() { @@ -94,6 +99,7 @@ class Application_Model_Session public function setIp6($_ip6) { $this->_ip6 = $_ip6; + return $this; } } |
