From a02b8ce20746ef5449e661ac8ffdb4e1974e65c2 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Mon, 1 May 2006 07:22:07 +0000 Subject: fixed clean, added lang to installer (thx ros) and cleaned up catalog display a bit and mojoed lang list --- localplay.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'localplay.php') 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; -- cgit