mirror of https://github.com/itflow-org/itflow
Merge branch '0.1.8.2' of https://github.com/twetech/itflow into 0.1.8.2
This commit is contained in:
commit
5ac03e7086
|
|
@ -1082,8 +1082,6 @@ function createiCalStr($datetime, $title, $description, $location)
|
|||
// Todo: add organizer details
|
||||
// $event->addNode(new ZCiCalDataNode("ORGANIZER;CN=Organizer Name:MAILTO:organizer@example.com"));
|
||||
|
||||
// Export the iCal object to a string
|
||||
$ics_feed = $cal_event->export();
|
||||
|
||||
return $ics_feed;
|
||||
// Return the iCal string
|
||||
return $cal_event->export();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -751,7 +751,7 @@ if (isset($_POST['bulk_ticket_reply'])) {
|
|||
// Get Contact Details
|
||||
$sql = mysqli_query(
|
||||
$mysqli,
|
||||
"SELECT contact_name, contact_email, ticket_created_by, ticket_assigned_to
|
||||
"SELECT contact_name, contact_email, ticket_created_by, ticket_assigned_to
|
||||
FROM tickets
|
||||
LEFT JOIN contacts ON ticket_contact_id = contact_id
|
||||
WHERE ticket_id = $ticket_id"
|
||||
|
|
@ -1186,7 +1186,7 @@ if (isset($_POST['add_invoice_from_ticket'])) {
|
|||
|
||||
$sql = mysqli_query(
|
||||
$mysqli,
|
||||
"SELECT * FROM tickets
|
||||
"SELECT * FROM tickets
|
||||
LEFT JOIN clients ON ticket_client_id = client_id
|
||||
LEFT JOIN contacts ON ticket_contact_id = contact_id
|
||||
LEFT JOIN assets ON ticket_asset_id = asset_id
|
||||
|
|
|
|||
|
|
@ -40,4 +40,4 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue