diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-09-29 18:29:20 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-09-29 18:29:20 +0200 |
commit | 17553fca1944b80c25826f2f71620bbf64e1a49b (patch) | |
tree | 45716d17564d0ea39cda4b0f6961b757e382c068 /inc/html.php | |
parent | 2f981761b3f5b7c8dcc53b8026d9fd3c499a7e1e (diff) | |
parent | 80d9f3ddb3a602960d23f1849c1ad6287c4f9d92 (diff) | |
download | rpg-17553fca1944b80c25826f2f71620bbf64e1a49b.tar.gz rpg-17553fca1944b80c25826f2f71620bbf64e1a49b.tar.bz2 |
Merge pull request #624 from lisps/revisions
date_at support
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php index a65fdfc31..495bdf919 100644 --- a/inc/html.php +++ b/inc/html.php @@ -222,6 +222,7 @@ function html_show($txt=null){ global $REV; global $HIGH; global $INFO; + global $DATE_AT; //disable section editing for old revisions or in preview if($txt || $REV){ $secedit = false; @@ -241,8 +242,8 @@ function html_show($txt=null){ echo '</div></div>'; }else{ - if ($REV) print p_locale_xhtml('showrev'); - $html = p_wiki_xhtml($ID,$REV,true); + if ($REV||$DATE_AT) print p_locale_xhtml('showrev'); + $html = p_wiki_xhtml($ID,$REV,true,$DATE_AT); $html = html_secedit($html,$secedit); if($INFO['prependTOC']) $html = tpl_toc(true).$html; $html = html_hilight($html,$HIGH); |