aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/templates/files/files.html
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-04-26 14:14:46 +0200
committerMarcin Kuzminski <marcin@python-works.com>2013-04-26 14:14:46 +0200
commit44ee258f00ab80ccaa988ac2f26c006c48c720c4 (patch)
tree3129d887cd295f6576c3261ebb5fed1d5a22a4fc /rhodecode/templates/files/files.html
parenta485694cc313d657c5b926f2bf365367a909265b (diff)
fixed some unicode problems with git file path
--HG-- extra : source : 63adb3d5233a3d56d5b918ed7a118f1115cba5cb
Diffstat (limited to 'rhodecode/templates/files/files.html')
-rw-r--r--rhodecode/templates/files/files.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/templates/files/files.html b/rhodecode/templates/files/files.html
index 16ae191c..409af8e2 100644
--- a/rhodecode/templates/files/files.html
+++ b/rhodecode/templates/files/files.html
@@ -3,7 +3,7 @@
<%def name="title(*args)">
${_('%s Files') % c.repo_name}
%if hasattr(c,'file'):
- &middot; ${c.file.path or '\\'}
+ &middot; ${h.safe_unicode(c.file.path) or '\\'}
%endif
&middot; ${c.rhodecode_name}
</%def>