projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8d3c3a
)
Enforce that exceptions are not recurring
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Sat, 8 May 2010 15:44:55 +0000
(11:44 -0400)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Sat, 8 May 2010 15:44:55 +0000
(11:44 -0400)
kronolith/lib/Event.php
patch
|
blob
|
history
diff --git
a/kronolith/lib/Event.php
b/kronolith/lib/Event.php
index
aaf3f32
..
f2bc69d
100644
(file)
--- a/
kronolith/lib/Event.php
+++ b/
kronolith/lib/Event.php
@@
-1655,7
+1655,8
@@
abstract class Kronolith_Event
public function recurs()
{
return isset($this->recurrence) &&
- !$this->recurrence->hasRecurType(Horde_Date_Recurrence::RECUR_NONE);
+ !$this->recurrence->hasRecurType(Horde_Date_Recurrence::RECUR_NONE) &&
+ empty($this->baseid);
}
/**