diff options
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r-- | lib/exe/css.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index 1b2b0c86b..8de3db11b 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -30,8 +30,9 @@ function css_out(){ global $conf; global $lang; global $config_cascade; + global $INPUT; - if (isset($_REQUEST['s']) && ($_REQUEST['s'] == 'feed')) { + if ($INPUT->str('s') == 'feed') { $mediatypes = array('feed'); $type = 'feed'; } else { @@ -39,7 +40,7 @@ function css_out(){ $type = ''; } - $tpl = trim(preg_replace('/[^\w-]+/','',$_REQUEST['t'])); + $tpl = trim(preg_replace('/[^\w-]+/','',$INPUT->str('t'))); if($tpl){ $tplinc = DOKU_INC.'lib/tpl/'.$tpl.'/'; $tpldir = DOKU_BASE.'lib/tpl/'.$tpl.'/'; |