diff options
author | Karl Vollmer <karl.vollmer@dal.ca> | 2011-11-23 10:57:54 -0400 |
---|---|---|
committer | Karl Vollmer <karl.vollmer@dal.ca> | 2011-11-23 10:57:54 -0400 |
commit | d02561c96c6b2dc0e9c22355e39d376a3a7b5b8a (patch) | |
tree | 526399309989a5e80f9068a70bbc2f91bbaff4fc /templates | |
parent | 3c758880816f59429d78c6cb4745c3ff0f8c4625 (diff) | |
download | ampache-d02561c96c6b2dc0e9c22355e39d376a3a7b5b8a.tar.gz ampache-d02561c96c6b2dc0e9c22355e39d376a3a7b5b8a.tar.bz2 ampache-d02561c96c6b2dc0e9c22355e39d376a3a7b5b8a.zip |
Add remote_username/password to Catalog Edit page
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_edit_catalog.inc.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/show_edit_catalog.inc.php b/templates/show_edit_catalog.inc.php index 46f196ae..a23ebb2c 100644 --- a/templates/show_edit_catalog.inc.php +++ b/templates/show_edit_catalog.inc.php @@ -49,10 +49,12 @@ <td><?php echo scrub_out(ucfirst($catalog->catalog_type)); ?></td> </tr> <tr> - <td><?php echo _('XML-RPC Key'); ?>:</td> - <td> - <input size="30" type="text" name="key" value="<?php echo scrub_out($catalog->key); ?>" />*<span class="error"><?php echo _('Required for Remote Catalogs'); ?></span> - </td> + <td><?php echo _('Remote Catalog Username'); ?>: </td> + <td><input size="30" type="text" name="remote_username" value="<?php echo scrub_out($catalog->remote_username); ?>" /><span class="error">*<?php echo _('Required for Remote Catalogs'); ?></span></td> +</tr> +<tr> + <td><?php echo _('Remote Catalog Password'); ?>: </td> + <td><input size="30" type="password" name="remote_password" value="" /><span class="error">*<?php echo _('Required for Remote Catalogs'); ?></span></td> </tr> <tr> <td><?php echo _('Filename pattern'); ?>:</td> |