mirror of https://github.com/itflow-org/itflow
Opps forgot to add event description to client events Fixes #273
This commit is contained in:
parent
72fbebd77a
commit
9eed217789
|
|
@ -22,6 +22,7 @@ $sql = mysqli_query($mysqli,"SELECT * FROM calendars LEFT JOIN events ON calenda
|
|||
while($row = mysqli_fetch_array($sql)){
|
||||
$event_id = $row['event_id'];
|
||||
$event_title = $row['event_title'];
|
||||
$event_description = $row['event_description'];
|
||||
$event_start = $row['event_start'];
|
||||
$event_end = $row['event_end'];
|
||||
$event_repeat = $row['event_repeat'];
|
||||
|
|
|
|||
Loading…
Reference in New Issue