mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Fix typo in mod/events
- Add todo in Model\Event
This commit is contained in:
parent
72b552895e
commit
95792f6b79
2 changed files with 3 additions and 2 deletions
|
@ -339,7 +339,7 @@ function events_content(App $a) {
|
|||
|
||||
// get events by id or by date
|
||||
if ($event_params['event_id']) {
|
||||
$r = Event::getListById(local_user(), $event_params['event-id']);
|
||||
$r = Event::getListById(local_user(), $event_params['event_id']);
|
||||
} else {
|
||||
$r = Event::getListByDate(local_user(), $event_params);
|
||||
}
|
||||
|
|
|
@ -504,6 +504,7 @@ class Event extends BaseObject
|
|||
}
|
||||
|
||||
// Query for the event by date.
|
||||
// @todo Slow query (518 seconds to run), to be optimzed
|
||||
$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
|
||||
`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event`
|
||||
LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
|
||||
|
|
Loading…
Reference in a new issue