From 882c1acd478338c85de0b825df7c7d4fecd446d9 Mon Sep 17 00:00:00 2001
From: Viktor Kovtun <viktor.kovtun@id.ethz.ch>
Date: Mon, 9 Sep 2019 11:15:53 +0200
Subject: [PATCH] SSDM-8405 Testing whether empty title is a valid value to
 Research Collection.

---
 .../1/dss/reporting-plugins/rc-exports-api/rcExports.py         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/rc-exports-api/rcExports.py b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/rc-exports-api/rcExports.py
index 66e91990f86..f44630466dd 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/rc-exports-api/rcExports.py
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/rc-exports-api/rcExports.py
@@ -271,7 +271,7 @@ def generateXML(zipOutputStream, fileMetadata, exportDirPath, submissionType, us
     titleField = ET.SubElement(dim, ET.QName(dimNS, 'field'))
     titleField.set('mdschema', 'dc')
     titleField.set('element', 'title')
-    titleField.text = str(time.time())
+    titleField.text = ''
 
     typeField = ET.SubElement(dim, ET.QName(dimNS, 'field'))
     typeField.set('mdschema', 'dc')
-- 
GitLab