suppress change tracking on import
This commit is contained in:
parent
7f95a66c99
commit
44b20b9da9
1 changed files with 3 additions and 3 deletions
6
external/browser.py
vendored
6
external/browser.py
vendored
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 Helmut Merz helmutm@cy55.de
|
# Copyright (c) 2013 Helmut Merz helmutm@cy55.de
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -18,8 +18,6 @@
|
||||||
|
|
||||||
"""
|
"""
|
||||||
view class(es) for import/export.
|
view class(es) for import/export.
|
||||||
|
|
||||||
$Id$
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
|
@ -44,6 +42,8 @@ class ExportImport(object):
|
||||||
|
|
||||||
def __init__(self, context, request):
|
def __init__(self, context, request):
|
||||||
self.context = removeSecurityProxy(context)
|
self.context = removeSecurityProxy(context)
|
||||||
|
request.form['organize.suppress_tracking'] = True
|
||||||
|
util.saveRequest(request)
|
||||||
self.request = request
|
self.request = request
|
||||||
self.message = u''
|
self.message = u''
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue