|
|
@ -64,6 +64,10 @@ class Cache { |
|
|
|
* @return int |
|
|
|
* @return int |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function getMimetypeId($mime) { |
|
|
|
public function getMimetypeId($mime) { |
|
|
|
|
|
|
|
if (empty($mime)) { |
|
|
|
|
|
|
|
// Can not insert empty string into Oracle NOT NULL column. |
|
|
|
|
|
|
|
$mime = 'application/octet-stream'; |
|
|
|
|
|
|
|
} |
|
|
|
if (empty(self::$mimetypeIds)) { |
|
|
|
if (empty(self::$mimetypeIds)) { |
|
|
|
$this->loadMimetypes(); |
|
|
|
$this->loadMimetypes(); |
|
|
|
} |
|
|
|
} |
|
|
|