From 6bd576a9fe2524f5c662767206efdebf0b43c8ab Mon Sep 17 00:00:00 2001 From: pb1dft Date: Sat, 23 Feb 2008 23:44:31 +0000 Subject: - Fixed Sorting on Admin->Browse Users - Fixed Shoutbox and shoutbox management (pb1dft) --- shout.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'shout.php') diff --git a/shout.php b/shout.php index 728100e6..21a2d303 100644 --- a/shout.php +++ b/shout.php @@ -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 -- cgit