diff options
author | xgizzmo <xgizzmo@ampache> | 2007-11-11 13:18:54 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2007-11-11 13:18:54 +0000 |
commit | 7b303176665062673f07f451ddbf571f8a2c3c80 (patch) | |
tree | 5e2d6da3761dd37cc6a32a8baab21c032e9ec338 /admin | |
parent | bf9b7856bb8c09eef2858183e8824e6cf9d9def0 (diff) | |
download | ampache-7b303176665062673f07f451ddbf571f8a2c3c80.tar.gz ampache-7b303176665062673f07f451ddbf571f8a2c3c80.tar.bz2 ampache-7b303176665062673f07f451ddbf571f8a2c3c80.zip |
If we go through the trouble of asking are you sure lets at least give the option to bail. :)
Diffstat (limited to 'admin')
-rw-r--r-- | admin/modules.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/modules.php b/admin/modules.php index baeb1748..b7756b1c 100644 --- a/admin/modules.php +++ b/admin/modules.php @@ -48,7 +48,7 @@ switch ($_REQUEST['action']) { $url = Config::get('web_path') . '/admin/modules.php?action=uninstall_localplay&type=' . $type; $title = _('Are you sure you want to remove this plugin?'); $body = ''; - show_confirmation($title,$body,$url); + show_confirmation($title,$body,$url,1); break; case 'uninstall_localplay': $type = scrub_in($_REQUEST['type']); |