summaryrefslogtreecommitdiff
path: root/doku.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-05-05 19:59:29 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-05-05 19:59:29 +0200
commitead122f7cf2bcfdcecfa1a433014cc0d55ade898 (patch)
tree817c24f5f4871918abb696850d7896934ccb5ea4 /doku.php
parent63e0b28d73c4be5de6f734211d5c09992d1b7541 (diff)
downloadrpg-ead122f7cf2bcfdcecfa1a433014cc0d55ade898.tar.gz
rpg-ead122f7cf2bcfdcecfa1a433014cc0d55ade898.tar.bz2
don't pass unused variable in doku.php FS#2774
Diffstat (limited to 'doku.php')
-rw-r--r--doku.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/doku.php b/doku.php
index 46c64c535..c058bb64a 100644
--- a/doku.php
+++ b/doku.php
@@ -80,8 +80,8 @@ trigger_event('DOKUWIKI_STARTED', $tmp);
//close session
session_write_close();
-//do the work
-act_dispatch($ACT);
+//do the work (picks up what to do from global env)
+act_dispatch();
$tmp = array(); // No event data
trigger_event('DOKUWIKI_DONE', $tmp);