summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/event/checkoverlapdrop.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/event/checkoverlapdrop.phtml')
-rw-r--r--application/views/scripts/event/checkoverlapdrop.phtml10
1 files changed, 1 insertions, 9 deletions
diff --git a/application/views/scripts/event/checkoverlapdrop.phtml b/application/views/scripts/event/checkoverlapdrop.phtml
index 6558e19..1ca1b29 100644
--- a/application/views/scripts/event/checkoverlapdrop.phtml
+++ b/application/views/scripts/event/checkoverlapdrop.phtml
@@ -1,9 +1,5 @@
<?php
-// Output
-//print_r($this->overlaps);
-//$overlaps[] = array();
-
-
+$output['cfevents'] = $this->cfevents;
if(count($this->overlapswithrepeat) == 0) {
$output['withrepeat'] = -1;
@@ -14,8 +10,6 @@ else {
$output['withrepeat'] .= '<li>' . 'EventID: ' . $o['eventID'] . ', Title: ' . $o['title'] . ', Start: ' . $o['start'] . ', End: ' . $o['end'] . '</li>';
}
$output['withrepeat'] .= '</ul>';
- // Echo contents of output, e.g. required values, such as title, date, etc.
- //echo json_encode($this->overlaps);
}
if(count($this->overlapswithoutrepeat) == 0) {
@@ -27,8 +21,6 @@ else {
$output['withoutrepeat'] .= '<li>' . 'EventID: ' . $o['eventID'] . ', Title: ' . $o['title'] . ', Start: ' . $o['start'] . ', End: ' . $o['end'] . '</li>';
}
$output['withoutrepeat'] .= '</ul>';
- // Echo contents of output, e.g. required values, such as title, date, etc.
- //echo json_encode($this->overlaps);
}
echo json_encode($output);
?> \ No newline at end of file