kludgy fix to uploading image/jpg
authorAlan <alan@roojs.com>
Tue, 28 Jun 2022 05:54:20 +0000 (13:54 +0800)
committerAlan <alan@roojs.com>
Tue, 28 Jun 2022 05:54:20 +0000 (13:54 +0800)
DataObjects/Images.php
Images.php

index f2c39c3..58e10a7 100644 (file)
@@ -858,6 +858,10 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         
         $this->mimetype = strtolower($this->mimetype);
+        if ($this->mimetype == 'image/jpg') {
+            $this->mimetype = 'image/jpeg';
+        }
+        
         
         $explode_mimetype = explode('/', $this->mimetype);
         
index 32859e1..eff84f5 100644 (file)
@@ -85,7 +85,7 @@ class Pman_Core_Images extends Pman
         //if (!empty($_GET['_post'])) {
         //   return $this->post();
         //}
-        
+
         $this->is_local = (!empty($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] == 'localhost') ? true : false;
         
         $this->as_mimetype = empty($_REQUEST['as']) ? '' : $_REQUEST['as'];
@@ -283,7 +283,6 @@ class Pman_Core_Images extends Pman
     function serve($img)
     {
         $this->sessionState(0); // turn off session... - locking...
-        
         require_once 'File/Convert.php';
         if (!file_exists($img->getStoreName())) {
 //            print_r($img);exit;