diff options
Diffstat (limited to 'templates/show_shoutbox.inc.php')
-rw-r--r-- | templates/show_shoutbox.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_shoutbox.inc.php b/templates/show_shoutbox.inc.php index 5bb61a37..d46f07c1 100644 --- a/templates/show_shoutbox.inc.php +++ b/templates/show_shoutbox.inc.php @@ -24,8 +24,8 @@ <div id="shoutbox"> <?php foreach ($shouts as $shout_id) { - $shout = new shoutBox($shout_id); - $object = shoutBox::get_object($shout->object_type,$shout->object_id); + $shout = new Shoutbox($shout_id); + $object = Shoutbox::get_object($shout->object_type,$shout->object_id); $object->format(); $client = new User($shout->user); $client->format(); |