diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 21:49:47 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 21:49:47 -0500 |
commit | dff1d2cf46f1f8d437a50b30ddf92486bf180674 (patch) | |
tree | 20d5949fb5fd4838141ac85c4de05966e9b10fdb /admin | |
parent | 57483216e47f46a74590fe98dea6dc36b1312b5a (diff) | |
download | ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.tar.gz ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.tar.bz2 ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.zip |
Rename shoutBox to Shoutbox
Diffstat (limited to 'admin')
-rw-r--r-- | admin/shout.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/shout.php b/admin/shout.php index d74e4205..8d4b78c0 100644 --- a/admin/shout.php +++ b/admin/shout.php @@ -33,19 +33,19 @@ show_header(); switch ($_REQUEST['action']) { case 'edit_shout': $shout_id = $_POST['shout_id']; - $update = shoutBox::update($_POST); + $update = Shoutbox::update($_POST); show_confirmation(T_('Shoutbox Post Updated'),'',Config::get('web_path').'/admin/shout.php'); break; case 'show_edit': - $shout = new shoutBox($_REQUEST['shout_id']); - $object = shoutBox::get_object($shout->object_type,$shout->object_id); + $shout = new Shoutbox($_REQUEST['shout_id']); + $object = Shoutbox::get_object($shout->object_type,$shout->object_id); $object->format(); $client = new User($shout->user); $client->format(); require_once Config::get('prefix') . '/templates/show_edit_shout.inc.php'; break; case 'delete': - $shout_id = shoutBox::delete($_REQUEST['shout_id']); + $shout_id = Shoutbox::delete($_REQUEST['shout_id']); show_confirmation(T_('Shoutbox Post Deleted'),'',Config::get('web_path').'/admin/shout.php'); break; default: |