diff --git a/modules/catalog/dropbox/dropbox.catalog.php b/modules/catalog/dropbox/dropbox.catalog.php index 5245cde5..853563ee 100644 --- a/modules/catalog/dropbox/dropbox.catalog.php +++ b/modules/catalog/dropbox/dropbox.catalog.php @@ -113,7 +113,7 @@ class Catalog_dropbox extends Catalog { $fields['apikey'] = array('description' => T_('API Key'), 'type'=>'text'); $fields['secret'] = array('description' => T_('Secret'), 'type'=>'password'); - $fields['path'] = array('description' => T_('Path'), 'type'=>'url', 'value' => '/'); + $fields['path'] = array('description' => T_('Path'), 'type'=>'text', 'value' => '/'); $fields['getchunk'] = array('description' => T_('Get chunked files on analyze'), 'type'=>'checkbox', 'value' => true); return $fields; diff --git a/modules/catalog/local/local.catalog.php b/modules/catalog/local/local.catalog.php index d6eb0c52..35f3c7fa 100644 --- a/modules/catalog/local/local.catalog.php +++ b/modules/catalog/local/local.catalog.php @@ -101,7 +101,7 @@ class Catalog_local extends Catalog public function catalog_fields() { - $fields['path'] = array('description' => T_('Path'),'type'=>'url'); + $fields['path'] = array('description' => T_('Path'),'type'=>'text'); return $fields; }