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);
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			@ -370,7 +370,7 @@ function events_content(App $a) {
 | 
			
		|||
		}
 | 
			
		||||
 | 
			
		||||
		if (x($_GET, 'id')) {
 | 
			
		||||
			$tpl =  get_markup_template("event.tpl");
 | 
			
		||||
			$tpl = get_markup_template("event.tpl");
 | 
			
		||||
		} else {
 | 
			
		||||
			$tpl = get_markup_template("events_js.tpl");
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue