summaryrefslogtreecommitdiffstats
path: root/application/models/Membership.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Membership.php')
-rw-r--r--application/models/Membership.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/application/models/Membership.php b/application/models/Membership.php
index c445338..a455848 100644
--- a/application/models/Membership.php
+++ b/application/models/Membership.php
@@ -16,7 +16,7 @@ class Application_Model_Membership
protected $_groupID;
protected $_roleID;
protected $_personID;
- protected $_suspended;
+ protected $_suspend;
protected $_apikey;
public function __construct(array $options = null)
@@ -93,13 +93,13 @@ class Application_Model_Membership
$this->_personID = $_personID;
return $this;
}
- public function getSuspended()
+ public function getSuspend()
{
- return $this->_suspended;
+ return $this->_suspend;
}
- public function setSuspended($_suspended)
+ public function setSuspend($_suspend)
{
- $this->_suspended = $_suspended;
+ $this->_suspend = $_suspend;
return $this;
}
public function getApikey()