summaryrefslogtreecommitdiffstats
path: root/localplay.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-05-01 07:22:07 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-05-01 07:22:07 +0000
commita02b8ce20746ef5449e661ac8ffdb4e1974e65c2 (patch)
treedb1e0b2a6ef1b9fa7bfaa65e2fdb8eb22286f063 /localplay.php
parentaf554e6296eff9ee08ad59597f27378e4b2a8db8 (diff)
downloadampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.tar.gz
ampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.tar.bz2
ampache-a02b8ce20746ef5449e661ac8ffdb4e1974e65c2.zip
fixed clean, added lang to installer (thx ros) and cleaned up catalog display a bit and mojoed lang list
Diffstat (limited to 'localplay.php')
-rw-r--r--localplay.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/localplay.php b/localplay.php
index ba5a5f7d..be5e2fe0 100644
--- a/localplay.php
+++ b/localplay.php
@@ -48,7 +48,15 @@ switch ($action) {
$localplay = init_localplay();
$localplay->delete($songs);
$url = $web_path . '/localplay.php';
- $title = _('Song Removed from Playlist');
+ $title = _('Song(s) Removed from Playlist');
+ $body = '';
+ show_confirmation($title,$body,$url);
+ break;
+ case 'delete_all':
+ $localplay = init_localplay();
+ $localplay->delete_all();
+ $url = $web_path . '/localplay.php';
+ $title = _('Song(s) Remove from Playlist');
$body = '';
show_confirmation($title,$body,$url);
break;