mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-28 22:41:07 -05:00
fixed mime issues
This commit is contained in:
parent
a928368479
commit
a3b371c158
@ -55,7 +55,8 @@ class Theme_assets extends CI_Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
//send
|
//send
|
||||||
header('Content-type: ' . mime_content_type($file_path));
|
$size = getimagesize($file_path);
|
||||||
|
header('Content-type: ' . $size['mime']);
|
||||||
$this->_expires_header(30);
|
$this->_expires_header(30);
|
||||||
readfile($file_path);
|
readfile($file_path);
|
||||||
}
|
}
|
||||||
@ -75,7 +76,7 @@ class Theme_assets extends CI_Controller
|
|||||||
$file_path = 'themes/' . $this->theme . '/js/' . $js_file;
|
$file_path = 'themes/' . $this->theme . '/js/' . $js_file;
|
||||||
|
|
||||||
//send
|
//send
|
||||||
header('Content-type: application/x-javascript');
|
header('Content-Type: application/x-javascript; charset=utf-8');
|
||||||
$this->_expires_header(30);
|
$this->_expires_header(30);
|
||||||
readfile($file_path);
|
readfile($file_path);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user