1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 02:10:24 +00:00

Fixed bug in cp/move and file/dir path

This commit is contained in:
zhengxie
2012-12-25 15:05:12 +08:00
parent 0ec2900bc4
commit 3b3f1231bb
7 changed files with 39 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ These are referenced from the setting TEMPLATE_CONTEXT_PROCESSORS and used by
RequestContext.
"""
from settings import SEAFILE_VERSION, SITE_TITLE, SITE_NAME, SITE_BASE, \
ENABLE_SIGNUP
ENABLE_SIGNUP, MAX_FILE_NAME
try:
from settings import BUSINESS_MODE
except ImportError:
@@ -36,5 +36,6 @@ def base(request):
'base_template': base_template,
'site_name': SITE_NAME,
'enable_signup': ENABLE_SIGNUP,
'max_file_name': MAX_FILE_NAME,
}