diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-05-01 15:49:36 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-05-01 15:56:55 -0400 |
commit | 17562c8843a853f0248a97e156b6f616dd4db574 (patch) | |
tree | d799d9df9cf08a4715d1a3aa17c483f3f9e873b2 /templates/show_edit_access.inc.php | |
parent | 5f2f81fa8fe4d111b3f818be84f899f74645308d (diff) | |
download | ampache-17562c8843a853f0248a97e156b6f616dd4db574.tar.gz ampache-17562c8843a853f0248a97e156b6f616dd4db574.tar.bz2 ampache-17562c8843a853f0248a97e156b6f616dd4db574.zip |
Clean up the ACL UI a bit
Make it more consistent and remove outdated references to RPC keys.
Diffstat (limited to 'templates/show_edit_access.inc.php')
-rw-r--r-- | templates/show_edit_access.inc.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/templates/show_edit_access.inc.php b/templates/show_edit_access.inc.php index 28bd0f73..a17fba35 100644 --- a/templates/show_edit_access.inc.php +++ b/templates/show_edit_access.inc.php @@ -19,13 +19,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * - * @package Ampache - * @copyright 2001 - 2011 Ampache.org - * @license http://opensource.org/licenses/gpl-2.0 GPLv2 - * @link http://www.ampache.org/ */ - ?> <?php show_box_top(T_('Edit Access Control List')); ?> <form name="edit_access" method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/admin/access.php?action=update_record&access_id=<?php echo intval($access->id); ?>"> @@ -42,7 +36,7 @@ <option value="stream"<?php echo $sl_stream; ?>><?php echo T_('Stream Access'); ?></option> <option value="interface"<?php echo $sl_interface; ?>><?php echo T_('Web Interface'); ?></option> <option value="network"<?php echo $sl_network; ?>><?php echo T_('Local Network Definition'); ?></option> - <option value="rpc"<?php echo $sl_rpc; ?>><?php echo T_('RPC'); ?></option> + <option value="rpc"<?php echo $sl_rpc; ?>><?php echo T_('API/RPC'); ?></option> </select> </td> @@ -71,12 +65,6 @@ </td> </tr> <tr> - <td><?php echo T_('Remote Key'); ?></td> - <td colspan="3"> - <input type="text" name="key" value="<?php echo scrub_out($access->key); ?>" size="32" maxlength="32" /> - </td> -</tr> -<tr> <td><?php echo T_('Level'); ?>:</td> <td colspan="3"> <?php $name = 'level_' . $access->level; ${$name} = 'checked="checked"'; ?> |