From e656dcd46abfe069ea83271248dbd7aae36554ca Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 23 Feb 2008 13:40:45 +0100 Subject: use strftime() instead of date() FS#1335 :!: This patch replaces the use of the date() function with the strftime() function. The latter will respect a set locale and will use localized strings for things like month names. Because the format options for strftime differ from the ones used in date, DokuWiki will rest the value of $conf['dformat'] if it contains an old date format string (detected by missing % characters). Plugins or templates using the $conf['dformat'] need to be updated. darcs-hash:20080223124045-7ad00-6afb2b839afc58781463e25577e06adb675fff79.gz --- inc/init.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'inc/init.php') diff --git a/inc/init.php b/inc/init.php index a1e18d2df..22959cf16 100644 --- a/inc/init.php +++ b/inc/init.php @@ -128,6 +128,11 @@ $conf['compression'] = 0; } + // fix dateformat for upgraders + if(strpos($conf['dformat'],'%') === false){ + $conf['dformat'] = '%Y/%m/%d %H:%M'; + } + // precalculate file creation modes init_creationmodes(); -- cgit v1.2.3