Commit 8d3197db authored by Jim Fulton's avatar Jim Fulton

ZODB3 packing didn't return anything before.

parent e4a262d8
......@@ -83,7 +83,7 @@
#
##############################################################################
__doc__="""System management components"""
__version__='$Revision: 1.51 $'[11:-2]
__version__='$Revision: 1.52 $'[11:-2]
import sys,os,time,string,Globals, Acquisition, os
......@@ -325,7 +325,13 @@ class ApplicationManager(Folder,CacheManager):
try: db=self._p_jar.db()
except: pass
else: return db.pack(t)
else:
t=db.pack(t)
if REQUEST is not None:
REQUEST['RESPONSE'].redirect(
REQUEST['URL1']+'/manage_workspace')
return t
# BoboPOS2:
if self._p_jar.db is not Globals.Bobobase._jar.db:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment