diff options
author | pb1dft <pb1dft@ampache> | 2008-02-23 23:44:31 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2008-02-23 23:44:31 +0000 |
commit | 6bd576a9fe2524f5c662767206efdebf0b43c8ab (patch) | |
tree | 79a1c7b402517e650cf5cd7008c1eb14accd5528 /shout.php | |
parent | a79d27c52ace4b0c13fc0e5f88b4d857b85557e1 (diff) | |
download | ampache-6bd576a9fe2524f5c662767206efdebf0b43c8ab.tar.gz ampache-6bd576a9fe2524f5c662767206efdebf0b43c8ab.tar.bz2 ampache-6bd576a9fe2524f5c662767206efdebf0b43c8ab.zip |
- Fixed Sorting on Admin->Browse Users
- Fixed Shoutbox and shoutbox management (pb1dft)
Diffstat (limited to 'shout.php')
-rw-r--r-- | shout.php | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -30,7 +30,6 @@ switch ($_REQUEST['action']) { access_denied(); exit; } - $shout_id = shoutBox::create($_POST); header("Location:" . Config::get('web_path')); break; @@ -41,14 +40,8 @@ switch ($_REQUEST['action']) { // Now go ahead and display the page where we let them add a comment etc require_once Config::get('prefix') . '/templates/show_add_shout.inc.php'; break; - case 'show_manage': - Browse::set_type('shoutbox'); - Browse::set_simple_browse(1); - $shoutbox_ids = Browse::get_objects(); - Browse::show_objects($shoutbox_ids); - break; default: - + header("Location:" . Config::get('web_path')); break; } // end switch on action |