diff options
Diffstat (limited to 'templates/show_manage_shoutbox.inc.php')
-rw-r--r-- | templates/show_manage_shoutbox.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_manage_shoutbox.inc.php b/templates/show_manage_shoutbox.inc.php index bcb0a4fe..d0c96bce 100644 --- a/templates/show_manage_shoutbox.inc.php +++ b/templates/show_manage_shoutbox.inc.php @@ -41,9 +41,9 @@ $web_path = Config::get('web_path'); </tr> <?php foreach ($object_ids as $shout_id) { - $shout = new shoutBox($shout_id); + $shout = new Shoutbox($shout_id); $shout->format(); - $object = shoutBox::get_object($shout->object_type,$shout->object_id); + $object = Shoutbox::get_object($shout->object_type,$shout->object_id); $object->format(); $client = new User($shout->user); $client->format(); |