diff --git a/inc/common.inc.php b/inc/common.inc.php index c4a7d237..ac7d2272 100644 --- a/inc/common.inc.php +++ b/inc/common.inc.php @@ -262,13 +262,13 @@ function hesk_load_database_functions() function hesk_load_api_database_functions() { - require(__DIR__ . '/../api/core/json_error.php'); + require(__DIR__ . '/../api/Core/json_error.php'); // Preferrably use the MySQLi functions if (function_exists('mysqli_connect')) { - require(__DIR__ . '/../api/core/database_mysqli.inc.php'); + require(__DIR__ . '/../api/Core/database_mysqli.inc.php'); } // Default to MySQL else { - require(__DIR__ . '/../api/core/database.inc.php'); + require(__DIR__ . '/../api/Core/database.inc.php'); } } // END hesk_load_database_functions() diff --git a/inc/view_attachment_functions.inc.php b/inc/view_attachment_functions.inc.php index a5259213..6bfbf8cd 100644 --- a/inc/view_attachment_functions.inc.php +++ b/inc/view_attachment_functions.inc.php @@ -51,11 +51,12 @@ function mfh_listAttachments($attachments = '', $reply = 0, $is_staff) } elseif (in_array($fontAwesomeIcon, array('fa fa-file-word-o', 'fa fa-file-excel-o', 'fa fa-file-powerpoint-o'))) { //-- Get the actual image location and display a thumbnail. It will be linked to a modal to view a larger size. $path = mfh_getSavedNameUrlForAttachment($att_id, $is_staff); + $apiPath = preg_replace('/https?:\/\//i', '', $hesk_settings['hesk_url'] . '/api/index.php/v1/tickets/' . $trackingID . '/attachments/' . $att_id); if ($path == '') { echo ''; } else { - echo ' + echo ' '; }