summaryrefslogtreecommitdiff
path: root/lib/tpl
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-02-23 13:40:45 +0100
committerAndreas Gohr <andi@splitbrain.org>2008-02-23 13:40:45 +0100
commite656dcd46abfe069ea83271248dbd7aae36554ca (patch)
tree989cc97f395c6c5102ffa01aaad9a758181bbcc7 /lib/tpl
parent8acb31082c9a565d775be0739e6deaf1773f9751 (diff)
downloadrpg-e656dcd46abfe069ea83271248dbd7aae36554ca.tar.gz
rpg-e656dcd46abfe069ea83271248dbd7aae36554ca.tar.bz2
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
Diffstat (limited to 'lib/tpl')
-rw-r--r--lib/tpl/default/detail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tpl/default/detail.php b/lib/tpl/default/detail.php
index d62031fb8..d0e07ce1a 100644
--- a/lib/tpl/default/detail.php
+++ b/lib/tpl/default/detail.php
@@ -56,7 +56,7 @@ if (!defined('DOKU_INC')) die();
<dl class="img_tags">
<?php
$t = tpl_img_getTag('Date.EarliestTime');
- if($t) print '<dt>'.$lang['img_date'].':</dt><dd>'.date($conf['dformat'],$t).'</dd>';
+ if($t) print '<dt>'.$lang['img_date'].':</dt><dd>'.strftime($conf['dformat'],$t).'</dd>';
$t = tpl_img_getTag('File.Name');
if($t) print '<dt>'.$lang['img_fname'].':</dt><dd>'.hsc($t).'</dd>';