diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-23 07:09:45 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-23 07:09:45 +0000 |
commit | 4ad67656eb63a6c23b0e6caed619f463e0c14aec (patch) | |
tree | 4acf5de1b4ddb89e90b5e082f5ab481c50c7d15d /radio.php | |
parent | 216e691dfa53a28af8beca7aad2bf0ffb71dba2c (diff) | |
download | ampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.tar.gz ampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.tar.bz2 ampache-4ad67656eb63a6c23b0e6caed619f463e0c14aec.zip |
editing a live stream works now, added confirmation to live stream creation and also tweaked the create page to be slightly less wordy
Diffstat (limited to 'radio.php')
-rw-r--r-- | radio.php | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -47,7 +47,11 @@ switch ($_REQUEST['action']) { if (!$results) { require_once Config::get('prefix') . '/templates/show_add_live_stream.inc.php'; } - + else { + $body = _('Radio Station Added'); + $title = ''; + show_confirmation($title,$body,Config::get('web_path') . '/index.php'); + } break; } // end data collection |