diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
commit | c56aeb1b7003ed10da98a8bbc8305a5cb90357a6 (patch) | |
tree | 476ed3baf1f14923c7034a340c172f4d38682c26 /shout.php | |
parent | 8442e4c7dbb9bad0386489418567c667e7b5ed91 (diff) | |
download | ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.gz ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.bz2 ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.zip |
removed random space on lastfm prefs, started work on managing shout and flagged items, cleaned up shoutbox css a bit
Diffstat (limited to 'shout.php')
-rw-r--r-- | shout.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -32,7 +32,7 @@ switch ($_REQUEST['action']) { } $shout_id = shoutBox::create($_POST); - + header("Location:" . Config::get('web_path')); break; case 'show_add_shout': // Get our object first @@ -41,6 +41,9 @@ 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': + + break; default: break; |