summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorSebastian Wagner2011-10-25 19:09:07 +0200
committerSebastian Wagner2011-10-25 19:09:07 +0200
commit12ab5238f1f9fbcbffc5ed6e71574b466541911c (patch)
tree52be032f91056e3dff2901ba6112a11b2a6820d7 /library
parentwas weiß ich (diff)
downloadpoolctrl-12ab5238f1f9fbcbffc5ed6e71574b466541911c.tar.gz
poolctrl-12ab5238f1f9fbcbffc5ed6e71574b466541911c.tar.xz
poolctrl-12ab5238f1f9fbcbffc5ed6e71574b466541911c.zip
verschiedenes
Diffstat (limited to 'library')
-rwxr-xr-xlibrary/Poolctrl/Validate/EventOverlapping.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/library/Poolctrl/Validate/EventOverlapping.php b/library/Poolctrl/Validate/EventOverlapping.php
index f3f1d71..fb632af 100755
--- a/library/Poolctrl/Validate/EventOverlapping.php
+++ b/library/Poolctrl/Validate/EventOverlapping.php
@@ -32,16 +32,9 @@ class Poolctrl_Validate_EventOverlapping extends Zend_Validate_Abstract
require_once 'Zend/Validate/Exception.php';
throw new Zend_Validate_Exception("Missing option 'poolID'");
}
- if (array_key_exists('repeat', $option)) {
- $_repeat = strtotime($option['repeat']);
- } else {
- require_once 'Zend/Validate/Exception.php';
- throw new Zend_Validate_Exception("Missing option 'repeat'");
- }
}
$this->_setStart($_start);
- $this->_setRepeat($r_repeat);
$this->_setPoolID($_poolID);
}
@@ -55,16 +48,6 @@ class Poolctrl_Validate_EventOverlapping extends Zend_Validate_Abstract
$this->_start = $_start;
}
- public function _getRepeat()
- {
- return $this->_repeat;
- }
-
- public function _setRepeat($_repeat)
- {
- $this->_repeat = $_repeat;
- }
-
public function _getPoolID()
{
return $this->_poolID;