[Zope-CMF] modification date should not be bobobase_modification_time

Rémi Houdaille remi.houdaille@akeirou.com
Wed, 10 Apr 2002 15:20:37 +0200


Oops ! I forgot one detail:

The method setting the modification date should reindex the object,
otherwise news_box and such catalog based things won't work:

   def setModificationDate(self, date):
       """
       Dublin Core element - date resource was last modified
       """
       self.modification_date = self._datify(date)
       self.reindexObject()

Rémi