summaryrefslogtreecommitdiffstats
path: root/templates/show_object_rating_static.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-08-19 22:24:24 +0000
committerspocky <spocky@ampache>2007-08-19 22:24:24 +0000
commitca8242858685571db9825a4f7f0d463153330338 (patch)
tree3a97ee97919827d7940614c284284f1c49fe579c /templates/show_object_rating_static.inc.php
parent3e46a9775c31d2ed6984ad11e58f9ffd1323b8ee (diff)
downloadampache-ca8242858685571db9825a4f7f0d463153330338.tar.gz
ampache-ca8242858685571db9825a4f7f0d463153330338.tar.bz2
ampache-ca8242858685571db9825a4f7f0d463153330338.zip
fixed object rating css issue
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 763c115a..fc22da8b 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>
- <span class="one-stars" title="1 <?php echo _('out of'); ?> 5">1</span>
+ <div class="one-stars" title="1 <?php echo _('out of'); ?> 5">1</div>
</li>
<li>
- <span class="two-stars" title="2 <?php echo _('out of'); ?> 5">2</span>
+ <div class="two-stars" title="2 <?php echo _('out of'); ?> 5">2</div>
</li>
<li>
- <span class="three-stars" title="3 <?php echo _('out of'); ?> 5">3</span>
+ <div class="three-stars" title="3 <?php echo _('out of'); ?> 5">3</div>
</li>
<li>
- <span class="four-stars" title="4 <?php echo _('out of'); ?> 5">4</span>
+ <div class="four-stars" title="4 <?php echo _('out of'); ?> 5">4</div>
</li>
<li>
- <span class="five-stars" title="5 <?php echo _('out of'); ?> 5">5</span>
+ <div class="five-stars" title="5 <?php echo _('out of'); ?> 5">5</div>
</li>
</ul>
</div>