diff --git a/dokuwiki/syntax.php b/dokuwiki/syntax.php index cf58293..7037ae8 100644 --- a/dokuwiki/syntax.php +++ b/dokuwiki/syntax.php @@ -53,6 +53,10 @@ class syntax_plugin_brmburo extends DokuWiki_Syntax_Plugin { } else { $status = "ERROR:DECODE"; } + if ($lastchange) { + $str_date = strftime('%Y-%m-%d %H:%M', $lastchange); + $status .= '
Last changed: ' . $str_date . '
'; + } } } $renderer->doc .= $status;