summaryrefslogtreecommitdiffstats
path: root/lib/rating.lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rating.lib.php')
-rw-r--r--lib/rating.lib.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/rating.lib.php b/lib/rating.lib.php
index 4f854c93..676a37eb 100644
--- a/lib/rating.lib.php
+++ b/lib/rating.lib.php
@@ -28,19 +28,7 @@ function show_rating($object_id,$type) {
$rating = new Rating($object_id,$type);
- switch (conf('ratings')) {
- case 'normal':
- include(conf('prefix') . '/templates/show_object_rating.inc.php');
- break;
- case 'flash':
- include(conf('prefix') . '/templates/show_object_rating_flash.inc.php');
- break;
- default:
- return false;
- break;
- } // end flash switch
-
- return true;
+ include(conf('prefix') . '/templates/show_object_rating.inc.php');
} // show_rating