|
From: mdw c. <myd...@li...> - 2003-03-21 09:15:01
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/tools/events
Modified Files:
cache.php
Log Message:
Correction d'un vilain bug dans la lecture du cookie des voffectués.
Maintenant ce bug est correigé et quand on a l'id du sondage dans le cookie "VOTES"
le sondage est affiché.
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/tools/events/cache.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- cache.php 14 Feb 2003 08:31:14 -0000 1.20
+++ cache.php 21 Mar 2003 09:14:30 -0000 1.21
@@ -1,7 +1,7 @@
<?PHP
//!! Cache System
//! Global cache system for MDW.Q
-// $Id: cache.php,v 1.20 2003/02/14 08:31:14 sukria Exp $
+// $Id: cache.php,v 1.21 2003/03/21 09:14:30 sukria Exp $
/*!
This class implement a global cache system for MDW.
@@ -184,10 +184,10 @@
$now = (float)$usec + (float)$sec;
$time_used = sprintf("%01.3f", $now - $TIME_START);
- print "<center><font face='sans-serif' size=-2>
+ print "<div id='signature'>
Ce site tourne sous MyTinyWeb 0.1<br>
Page cachée, générée en $time_used secondes.
- </font></center>\n";
+ </div>\n";
}
}
|