Show all events.
This commit is contained in:
parent
b5d22c0bbc
commit
a77fea9c36
1 changed files with 1 additions and 2 deletions
|
@ -204,8 +204,7 @@ class CalciferCaldavBackend extends AbstractBackend
|
||||||
$qb->select(array('e'))
|
$qb->select(array('e'))
|
||||||
->from('CalciferBundle:Event', 'e')
|
->from('CalciferBundle:Event', 'e')
|
||||||
->where('e.startdate >= :startdate')
|
->where('e.startdate >= :startdate')
|
||||||
->orderBy('e.startdate')
|
->orderBy('e.startdate');
|
||||||
->setParameter('startdate', $now);
|
|
||||||
$entities = $qb->getQuery()->execute();
|
$entities = $qb->getQuery()->execute();
|
||||||
|
|
||||||
if (count($entities) > 0) {
|
if (count($entities) > 0) {
|
||||||
|
|
Reference in a new issue