[cpif] r78 - trunk/frontend-web

svn at argo.es svn at argo.es
Tue May 22 12:29:13 CEST 2007


Author: alvaro
Date: Tue May 22 12:28:54 2007
New Revision: 78

Log:
Bugfix: Corregido timestamp en los mensajes


Modified:
   trunk/frontend-web/skins.py

Modified: trunk/frontend-web/skins.py
==============================================================================
--- trunk/frontend-web/skins.py	(original)
+++ trunk/frontend-web/skins.py	Tue May 22 12:28:54 2007
@@ -88,7 +88,8 @@
         format = "odd"
         self.__t_count = 1
       file = "%s/%s" % (self.available_skins[self.skin], self.skin_files['thread_entry'])
-      aux = self.__load_file(file) % {"msg_num":msg_num, "author":author, "date":date, "text":text,"format":format }
+      import time
+      aux = self.__load_file(file) % {"msg_num":msg_num, "author":author, "date":time.ctime(date), "text":text,"format":format }
       self.set_text(aux)
 
 



More information about the cpif mailing list