diff --git a/product/ERP5Type/ZopePatch.py b/product/ERP5Type/ZopePatch.py
index 8646eb0c1bb277a3607351c66d257e9f72aff9e8..b3d34cd07b500ac8bf03d162ba7c001a0a6e79c9 100644
--- a/product/ERP5Type/ZopePatch.py
+++ b/product/ERP5Type/ZopePatch.py
@@ -72,6 +72,7 @@ from Products.ERP5Type.patches import ZODBConnection
 from Products.ERP5Type.patches import TransactionAddBeforeCommitHook
 from Products.ERP5Type.patches import ZopePageTemplate
 from Products.ERP5Type.patches import ZopePageTemplateUtils
+from Products.ERP5Type.patches import OFSHistory
 
 # These symbols are required for backward compatibility
 from Products.ERP5Type.patches.PropertyManager import ERP5PropertyManager
diff --git a/product/ERP5Type/patches/OFSHistory.py b/product/ERP5Type/patches/OFSHistory.py
new file mode 100644
index 0000000000000000000000000000000000000000..df8904253c4150b0e797032760cb0d5672590175
--- /dev/null
+++ b/product/ERP5Type/patches/OFSHistory.py
@@ -0,0 +1,45 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Foundation and Contributors.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
+from OFS.History import HystoryJar, historicalRevision
+
+"""
+Rationale for this patch:
+Modifications __setstate__ does to self must not cause object to become
+registered to its jar (ie, it must have no jar).
+
+Original code breaks this, and this makes it impossible to view, for example,
+a former revision of a PythonScript if that revision was written by an old
+Zope (ex: 2.12 reading 2.8 PythonScript).
+
+Launchpad bug opened, patch submitted:
+  https://bugs.launchpad.net/zope2/+bug/735999
+"""
+
+# Original function lines removed by this patch are present but commented-out.
+def patched_historicalRevision(self, serial):
+    state=self._p_jar.oldstate(self, serial)
+    rev=self.__class__.__basicnew__()
+#    rev._p_jar=HystoryJar(self._p_jar)
+    rev._p_oid=self._p_oid
+#    rev._p_serial=serial
+    rev.__setstate__(state)
+#    rev._p_changed=0
+# PATCH ADDITION BEGIN
+    rev._p_serial=serial
+    rev._p_jar=HystoryJar(self._p_jar)
+# PATCH ADDITION END
+    return rev
+
+historicalRevision.func_code = patched_historicalRevision.func_code
+