summaryrefslogtreecommitdiffstats
path: root/templates/show_object_rating_static.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-08-20 20:58:03 +0000
committerspocky <spocky@ampache>2007-08-20 20:58:03 +0000
commit97f2382bc127d66613e6ce7e45eaff548a288b14 (patch)
tree00a34c9b37b42f1412ee8b55c5e1cc04de84ac0f /templates/show_object_rating_static.inc.php
parenteb23bc31f5f5ccbf27f57f12429a63c2006d2419 (diff)
downloadampache-97f2382bc127d66613e6ce7e45eaff548a288b14.tar.gz
ampache-97f2382bc127d66613e6ce7e45eaff548a288b14.tar.bz2
ampache-97f2382bc127d66613e6ce7e45eaff548a288b14.zip
Fixed star-rating css
Diffstat (limited to 'templates/show_object_rating_static.inc.php')
-rw-r--r--templates/show_object_rating_static.inc.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_object_rating_static.inc.php b/templates/show_object_rating_static.inc.php
index fc22da8b..763c115a 100644
--- a/templates/show_object_rating_static.inc.php
+++ b/templates/show_object_rating_static.inc.php
@@ -39,19 +39,19 @@ else echo "$rating->rating of 5</li>\n";
//it did not like my "1-star", "2-star" ... css styles, and I changed it to this after I realized star1... would have worked :\
?>
<li>
- <div class="one-stars" title="1 <?php echo _('out of'); ?> 5">1</div>
+ <span class="one-stars" title="1 <?php echo _('out of'); ?> 5">1</span>
</li>
<li>
- <div class="two-stars" title="2 <?php echo _('out of'); ?> 5">2</div>
+ <span class="two-stars" title="2 <?php echo _('out of'); ?> 5">2</span>
</li>
<li>
- <div class="three-stars" title="3 <?php echo _('out of'); ?> 5">3</div>
+ <span class="three-stars" title="3 <?php echo _('out of'); ?> 5">3</span>
</li>
<li>
- <div class="four-stars" title="4 <?php echo _('out of'); ?> 5">4</div>
+ <span class="four-stars" title="4 <?php echo _('out of'); ?> 5">4</span>
</li>
<li>
- <div class="five-stars" title="5 <?php echo _('out of'); ?> 5">5</div>
+ <span class="five-stars" title="5 <?php echo _('out of'); ?> 5">5</span>
</li>
</ul>
</div>