setConverters() overrides existing converters

This commit is contained in:
Uwe Steinmann 2016-11-15 21:08:03 +01:00
parent 4bcf552f64
commit 125697a287

View File

@ -103,7 +103,7 @@ class SeedDMS_Preview_Base {
* and the value is the command to be called for creating the preview
*/
function setConverters($arr) { /* {{{ */
$this->converters = array_merge($arr, $this->converters);
$this->converters = array_merge($this->converters, $arr);
} /* }}} */
/**