summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2013-01-21 21:24:57 +0000
committerdakkar <dakkar@thenautilus.net>2013-01-21 21:24:57 +0000
commit701093c65c209a9cd9a7f0228a1c06292fd5eee3 (patch)
tree04bc5a2929f0a7701cec7757947226896f719fe9 /templates
parentgod only knows (diff)
downloadthenautilus-701093c65c209a9cd9a7f0228a1c06292fd5eee3.tar.gz
thenautilus-701093c65c209a9cd9a7f0228a1c06292fd5eee3.tar.bz2
thenautilus-701093c65c209a9cd9a7f0228a1c06292fd5eee3.zip
fix fencepost error on review stars
Diffstat (limited to 'templates')
-rw-r--r--templates/du2html-review.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/du2html-review.xsl b/templates/du2html-review.xsl
index b190c59..5fe3c1e 100644
--- a/templates/du2html-review.xsl
+++ b/templates/du2html-review.xsl
@@ -56,7 +56,7 @@
<x:param name="value"/>
<x:param name="max"/>
<x:choose>
- <x:when test="$value &gt; 1"><img src="/full-star.svg" style="width: 2em; height: 2em" /></x:when>
+ <x:when test="$value &gt;= 1"><img src="/full-star.svg" style="width: 2em; height: 2em" /></x:when>
<x:when test="$value &gt; 0"><img src="/half-star.svg" style="width: 2em; height: 2em" /></x:when>
<x:otherwise><img src="/empty-star.svg" style="width: 2em; height: 2em" /></x:otherwise>
</x:choose>