diff options
author | lisps <stummp@loewen.de> | 2013-11-22 09:04:44 +0100 |
---|---|---|
committer | lisps <stummp@loewen.de> | 2013-11-22 09:04:44 +0100 |
commit | 4bde2196a1e3572cead3f4d4e4b6a5a752bd62b3 (patch) | |
tree | a0d89db2dfca336b7bc8d32aa6a8977aa93ab27e /lib | |
parent | 5c2eed9a193e9341fbfee63d4a973898acdc5ee5 (diff) | |
download | rpg-4bde2196a1e3572cead3f4d4e4b6a5a752bd62b3.tar.gz rpg-4bde2196a1e3572cead3f4d4e4b6a5a752bd62b3.tar.bz2 |
remove property rev from xhtml.php
changed variable name $create_time to $modified_time
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exe/detail.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/exe/detail.php b/lib/exe/detail.php index daa55f405..cc29d5b87 100644 --- a/lib/exe/detail.php +++ b/lib/exe/detail.php @@ -5,9 +5,7 @@ require_once(DOKU_INC.'inc/init.php'); $IMG = getID('media'); $ID = cleanID($INPUT->str('id')); -$REV = & $INPUT->ref('rev'); -//sanitize revision -$REV = preg_replace('/[^0-9]/', '', $REV); +$REV = $INPUT->int('rev'); // this makes some general info available as well as the info about the // "parent" page |