[CMF-checkins] CVS: CMF/CMFDefault - DublinCore.py:1.19.4.2

Florent Guillaume fg@nuxeo.com
Thu, 25 Jul 2002 16:57:51 -0400


Update of /cvs-repository/CMF/CMFDefault
In directory cvs.zope.org:/tmp/cvs-serv13347

Modified Files:
      Tag: CMF-1_3-branch
	DublinCore.py 
Log Message:
Merged change from HEAD:

Fixed the setting of the modification date to use the correct date.


=== CMF/CMFDefault/DublinCore.py 1.19.4.1 => 1.19.4.2 ===
             When called without an argument, sets the date to now.
         """
         if modification_date is None:
-            # XXX which one is more correct ?
-            #self.modification_date = DateTime()
-            self.modification_date = self.bobobase_modification_time()
+            self.modification_date = DateTime()
         else:
             self.modification_date = self._datify(modification_date)