• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


Commit MetaInfo

修訂1ac34a59289dd45c3fedf097464ad1d083a7297c (tree)
時間2012-07-10 00:22:30
作者Tim Van Steenburgh <tvansteenburgh@gmai...>
CommiterTim Van Steenburgh

Log Message

[#4382] Fix to work with new scm model.

Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com>

Change Summary

差異

--- a/ForgeSVN/forgesvn/controllers.py
+++ b/ForgeSVN/forgesvn/controllers.py
@@ -14,7 +14,7 @@ class BranchBrowser(repository.BranchBrowser):
1414 @with_trailing_slash
1515 def index(self, limit=None, page=0, count=0, **kw):
1616 latest = c.app.repo.latest(branch=self._branch)
17- if not latest or (latest.object_id.split(':')[1] == '1' and h.has_access(c.app, 'write')()):
17+ if not latest or (latest._id.split(':')[1] == '1' and h.has_access(c.app, 'write')()):
1818 return dict(allow_fork=False, log=[])
1919 redirect(latest.url() + 'tree/')
2020