encode download URL
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3208 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
2fc1345ffa
commit
75b59f8308
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ class ItemView(BaseView):
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
extension = '.' + extensions[0]
|
extension = '.' + extensions[0]
|
||||||
return '%s/d%s/%s%s' % (baseUrl, urlInfo.path, self.title, extension)
|
title = self.title.encode('UTF-8')
|
||||||
|
return '%s/d%s/%s%s' % (baseUrl, urlInfo.path, title, extension)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def breadCrumbs(self):
|
def breadCrumbs(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue