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 /templates | |
parent | 57483216e47f46a74590fe98dea6dc36b1312b5a (diff) | |
download | ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.tar.gz ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.tar.bz2 ampache-dff1d2cf46f1f8d437a50b30ddf92486bf180674.zip |
Rename shoutBox to Shoutbox
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_index.inc.php | 2 | ||||
-rw-r--r-- | templates/show_manage_shoutbox.inc.php | 4 | ||||
-rw-r--r-- | templates/show_shoutbox.inc.php | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_index.inc.php b/templates/show_index.inc.php index c0aabb32..0eba867b 100644 --- a/templates/show_index.inc.php +++ b/templates/show_index.inc.php @@ -44,7 +44,7 @@ if (Art::is_enabled()) { <?php if (Config::get('sociable')) { ?> <div id="shout_objects"> <?php - $shouts = shoutBox::get_top('5'); + $shouts = Shoutbox::get_top('5'); if (count($shouts)) { require_once Config::get('prefix') . '/templates/show_shoutbox.inc.php'; } 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(); 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(); |