Skip to content
Snippets Groups Projects
Commit 0fd5252c authored by Bart Visscher's avatar Bart Visscher
Browse files

OC_Image: Move Content-Type header to show function

parent 169ddc5b
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,7 @@ class OC_Image {
* @returns bool
*/
public function show() {
header('Content-Type: '.$this->mimeType());
return $this->_output();
}
......@@ -117,17 +118,14 @@ class OC_Image {
} elseif($filepath === null && $this->filepath !== null) {
$filepath = $this->filepath;
}
return $this->_output($filepath, true);
return $this->_output($filepath);
}
/**
* @brief Outputs/saves the image.
*/
private function _output($filepath=null, $really=false) {
if($really === false) {
header('Content-Type: '.$this->mimeType());
$filepath = null; // Just being cautious ;-)
} else {
private function _output($filepath=null) {
if($filepath) {
if(!is_writable(dirname($filepath))) {
OC_Log::write('core',__METHOD__.'(): Directory \''.dirname($filepath).'\' is not writable.', OC_Log::ERROR);
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment