diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-02-23 13:40:45 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-02-23 13:40:45 +0100 |
commit | e656dcd46abfe069ea83271248dbd7aae36554ca (patch) | |
tree | 989cc97f395c6c5102ffa01aaad9a758181bbcc7 /inc/toolbar.php | |
parent | 8acb31082c9a565d775be0739e6deaf1773f9751 (diff) | |
download | rpg-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 'inc/toolbar.php')
-rw-r--r-- | inc/toolbar.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/toolbar.php b/inc/toolbar.php index 06efe642d..00b7baefe 100644 --- a/inc/toolbar.php +++ b/inc/toolbar.php @@ -24,10 +24,10 @@ function toolbar_JSdefines($varname){ global $lang; $menu = array(); - + $evt = new Doku_Event('TOOLBAR_DEFINE', $menu); if ($evt->advise_before()){ - + // build button array $menu = array_merge($menu, array( array( @@ -197,7 +197,7 @@ function toolbar_signature(){ $sig = str_replace('@USER@',$_SERVER['REMOTE_USER'],$sig); $sig = str_replace('@NAME@',$INFO['userinfo']['name'],$sig); $sig = str_replace('@MAIL@',$INFO['userinfo']['mail'],$sig); - $sig = str_replace('@DATE@',date($conf['dformat']),$sig); + $sig = str_replace('@DATE@',strftime($conf['dformat']),$sig); $sig = str_replace('\\\\n','\\n',addslashes($sig)); return $sig; } |