diff options
Diffstat (limited to 'templates/show_object_rating.inc.php')
-rw-r--r-- | templates/show_object_rating.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_object_rating.inc.php b/templates/show_object_rating.inc.php index cba5d713..75ae6995 100644 --- a/templates/show_object_rating.inc.php +++ b/templates/show_object_rating.inc.php @@ -35,7 +35,7 @@ $base_url = '?action=set_rating&rating_type=' . $rating->type . '&object_id=' . if ($rating->rating <= 0) { echo _('not rated yet') . "</li>\n"; } - else printf(_('%s of 5', $rating->preciserating)); echo "</li>\n"; + else printf(_('%s of 5'), $rating->preciserating); echo "</li>\n"; for ($i=1; $i<6; $i++) { |