diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-09 04:46:16 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-09 04:46:16 +0000 |
commit | 6906bb43c6635ece5150c9abffe8e9bb16a03f6c (patch) | |
tree | 2ef3884c202fe082b994441efcb5cac7abfec858 /templates/show_access_list.inc | |
parent | d8b8c6a131c392fec4ba330ec0de1eebb516c9de (diff) | |
download | ampache-6906bb43c6635ece5150c9abffe8e9bb16a03f6c.tar.gz ampache-6906bb43c6635ece5150c9abffe8e9bb16a03f6c.tar.bz2 ampache-6906bb43c6635ece5150c9abffe8e9bb16a03f6c.zip |
updated acess mojo
Diffstat (limited to 'templates/show_access_list.inc')
-rw-r--r-- | templates/show_access_list.inc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/show_access_list.inc b/templates/show_access_list.inc index b5c7207b..a2aa79d0 100644 --- a/templates/show_access_list.inc +++ b/templates/show_access_list.inc @@ -31,7 +31,7 @@ $row_classes = array('even','odd'); ?> -<p style="font-size: 10pt; font-weight: bold;"><?php print _("Host Access to Your Catalog"); ?></p> +<p class="header1"><?php print _("Host Access to Your Catalog"); ?></p> <p>Since your catalog can be accessed remotely you may want to limit the access from remote sources so you are not in violation of copyright laws. By default your @@ -56,13 +56,14 @@ if (count($list)) { foreach ($list as $access) { ?> <tr class="<?php print $row_classes[0]; ?>"> - <td><?php print $access->name; ?></td> + <td><?php print scrub_out($access->name); ?></td> <td><?php print int2ip($access->start); ?></td> <td><?php print int2ip($access->end); ?></td> <td><?php print $access->get_level_name(); ?></td> <td> - Edit | - <a href="<?php print conf('web_path'); ?>/admin/access.php?action=show_confirm_delete&access_id=<?php print $access->id; ?>"><?php print _("Revoke"); ?></a> + <a href="<?php echo conf('web_path'); ?>/admin/access.php?action=show_edit_host&access_id=<?php echo scrub_out($access->id); ?>"><?php echo _('Edit'); ?></a> + | + <a href="<?php echo conf('web_path'); ?>/admin/access.php?action=show_confirm_delete&access_id=<?php print scrub_out($access->id); ?>"><?php print _("Revoke"); ?></a> </td> </tr> <?php $row_classes = array_reverse($row_classes); ?> |