[IMP] document_webdav : webdav enable true if not specified in configuration file

bzr revid: hmo@tinyerp.com-20091229093655-vohg3lxkzfs7zwka
This commit is contained in:
Harry (Open ERP) 2009-12-29 15:06:55 +05:30
parent 922de60740
commit 892e40f0c9
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class DAVHandler(FixSendError,DAVRequestHandler):
try:
from service.http_server import reg_http_service,OpenERPAuthProvider
if (config.get_misc('webdav','enable',False)):
if (config.get_misc('webdav','enable',True)):
davpath = '/'+config.get_misc('webdav','vdir','webdav')+'/'
handler = DAVHandler
handler.verbose = config.get_misc('webdav','verbose',True)