1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Merge pull request #1357 from Phyks/issue_1356

Fix issue #1356
This commit is contained in:
Afterster 2016-08-05 08:14:18 +02:00 committed by GitHub
commit b6bf4268ae
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ class Catalog_dropbox extends Catalog
{ {
$fields['apikey'] = array('description' => T_('API Key'), 'type'=>'text'); $fields['apikey'] = array('description' => T_('API Key'), 'type'=>'text');
$fields['secret'] = array('description' => T_('Secret'), 'type'=>'password'); $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); $fields['getchunk'] = array('description' => T_('Get chunked files on analyze'), 'type'=>'checkbox', 'value' => true);
return $fields; return $fields;

View file

@ -101,7 +101,7 @@ class Catalog_local extends Catalog
public function catalog_fields() public function catalog_fields()
{ {
$fields['path'] = array('description' => T_('Path'),'type'=>'url'); $fields['path'] = array('description' => T_('Path'),'type'=>'text');
return $fields; return $fields;
} }