Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26630
Modified Files:
serendipity_functions.inc.php
Log Message:
See what'm talking about, it actually worked before - this is just to avoid confusion in the future
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -d -r1.261 -r1.262
--- serendipity_functions.inc.php 5 May 2004 16:40:09 -0000 1.261
+++ serendipity_functions.inc.php 5 May 2004 16:45:33 -0000 1.262
@@ -16,7 +16,7 @@
if ( !isset($cache[$format]) ) {
$cache[$format] = $format;
if ( strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ) {
- $cache[$format] = str_replace('%e', '%d', $format);
+ $cache[$format] = str_replace('%e', '%d', $cache[$format]);
}
}
return ucfirst(strftime($cache[$format], (int)$time));
|