diff options
author | mistic100 <mistic@piwigo.org> | 2012-12-26 18:20:14 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-12-26 18:20:14 +0000 |
commit | e11b5a757cf07ebebbd6523a610d9321671ffe19 (patch) | |
tree | 853acf9b4f7647c4850375411af2d74f11e3a6f2 | |
parent | 69a20717788a577735e840d86447746c4dcb3f94 (diff) |
smarty bug introduced in r19575
git-svn-id: http://piwigo.org/svn/trunk@19581 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/picture.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index c75a60305..3faa4ffba 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -258,9 +258,9 @@ y.callService( if (e) e.innerHTML = rating.score; e = document.getElementById("ratingCount"); if (e) {ldelim} - if (rating.count == 1) { + if (rating.count == 1) {ldelim} e.innerHTML = "({'%d rate'|@translate|@escape:'javascript'})".replace( "%d", rating.count); - } else { + } else {ldelim} e.innerHTML = "({'%d rates'|@translate|@escape:'javascript'})".replace( "%d", rating.count); } {rdelim} |