diff --git a/SeedDMS_Preview/Preview/Base.php b/SeedDMS_Preview/Preview/Base.php index 25a36cdee..e09470330 100644 --- a/SeedDMS_Preview/Preview/Base.php +++ b/SeedDMS_Preview/Preview/Base.php @@ -113,7 +113,7 @@ class SeedDMS_Preview_Base { * @return boolean true if converter exists, otherwise false */ function hasConverter($mimetype) { /* {{{ */ - return array_key_exists($mimetype, $this->converters); + return array_key_exists($mimetype, $this->converters) && $this->converters[$mimetype]; } /* }}} */ }