diff options
author | xgizzmo <xgizzmo@ampache> | 2006-01-15 21:38:44 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-01-15 21:38:44 +0000 |
commit | a3362e3d3f7b31f27bcccb8b2384cfa9c0d219ac (patch) | |
tree | 83e8cc8482e932abdb57c72f2bcabcc3a42d1d62 /admin/access.php | |
parent | e8279472de81bf4a63f404cdbd6bd36ad33f3ae6 (diff) | |
download | ampache-a3362e3d3f7b31f27bcccb8b2384cfa9c0d219ac.tar.gz ampache-a3362e3d3f7b31f27bcccb8b2384cfa9c0d219ac.tar.bz2 ampache-a3362e3d3f7b31f27bcccb8b2384cfa9c0d219ac.zip |
Fixed typo that caused removing a host from the access list to fail.
Diffstat (limited to 'admin/access.php')
-rw-r--r-- | admin/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/access.php b/admin/access.php index c16a125e..f0fa7d9b 100644 --- a/admin/access.php +++ b/admin/access.php @@ -39,7 +39,7 @@ show_template('header'); switch ($action ) { case 'show_confirm_delete': - show_confim_action(_('Do you really want to delete this Access Reocrd?'),'admin/access.php','access_id=' . scrub_out($_REQUEST['access_id']) . '&action=delete_host'); + show_confirm_action(_('Do you really want to delete this Access Reocrd?'),'admin/access.php','access_id=' . scrub_out($_REQUEST['access_id']) . '&action=delete_host'); break; case 'delete_host': $access->delete($_REQUEST['access_id']); |