diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2009-10-07 15:36:14 +0200 |
---|---|---|
committer | Andreas Gohr <gohr@cosmocode.de> | 2009-10-07 15:36:14 +0200 |
commit | f22635779b10fe3735a11bc1af5c88653e580534 (patch) | |
tree | 03322ac39a0a7a644340b45417125ea4c8275b51 /lib/tpl/default | |
parent | c57e365ef97272cc08601374e4de2f5bcd614335 (diff) | |
download | rpg-f22635779b10fe3735a11bc1af5c88653e580534.tar.gz rpg-f22635779b10fe3735a11bc1af5c88653e580534.tar.bz2 |
New dformat() function for fuzzy date support
Ignore-this: 7193cd788fee2c05a9068bf6edd5dc17
It is now possible to use the %f placeholder in $conf['dformat']
to add a fuzzy age string.
Template developers and plugin authors should replace their strftime +
$conf['dformat'] calls with calls to the new dformat() function.
Example:
%Y/%m/%d %H:%M (%f) produces dates like this:
2009/09/16 10:36 (3 weeks ago)
darcs-hash:20091007133614-6e07b-677108d1b43928ef8fd886813e43514507b5e073.gz
Diffstat (limited to 'lib/tpl/default')
-rw-r--r-- | lib/tpl/default/detail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tpl/default/detail.php b/lib/tpl/default/detail.php index 765358568..4f42b116e 100644 --- a/lib/tpl/default/detail.php +++ b/lib/tpl/default/detail.php @@ -53,7 +53,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>'.strftime($conf['dformat'],$t).'</dd>'; + if($t) print '<dt>'.$lang['img_date'].':</dt><dd>'.dformat($t).'</dd>'; $t = tpl_img_getTag('File.Name'); if($t) print '<dt>'.$lang['img_fname'].':</dt><dd>'.hsc($t).'</dd>'; |