aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-03-12 20:21:52 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-03-12 20:21:52 +0200
commit9863aba2baf336c5e97fd4d03d76ffff3df0bcf2 (patch)
treeeea2bde76cb04ad12bfafd641ec13ce86365e2b9
parentc4f3ab0743512a4bd57bd9109955cda9e6773df2 (diff)
fixes count on main page broken after py2.5 compatibility fixes
--HG-- branch : beta
-rw-r--r--rhodecode/templates/index_base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html
index e1549a8a..b1962054 100644
--- a/rhodecode/templates/index_base.html
+++ b/rhodecode/templates/index_base.html
@@ -115,7 +115,7 @@
</div>
</div>
<script>
- YUD.get('repo_count').innerHTML = ${cnt+1};
+ YUD.get('repo_count').innerHTML = ${cnt};
var func = function(node){
return node.parentNode.parentNode.parentNode.parentNode;
}