Skip to content
Snippets Groups Projects
Commit d059be8c authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fix index without JavaScript FS#1953

parent 49cbd23e
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/');
if (isset($_SERVER['HTTP_X_DOKUWIKI_DO'])){
$ACT = trim(strtolower($_SERVER['HTTP_X_DOKUWIKI_DO']));
} elseif (!empty($IDX)) {
} elseif (!empty($_REQUEST['idx'])) {
$ACT = 'index';
} elseif (isset($_REQUEST['do'])) {
$ACT = $_REQUEST['do'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment