From 00d58927261c5bed6f093ca4aa2064a18139a228 Mon Sep 17 00:00:00 2001 From: Michael Hamann Date: Wed, 20 Feb 2013 20:26:05 +0100 Subject: Fix remaining missing $INPUT uses FS#2577 This adds $INPUT in all places where it was still missing and available. $INPUT is now also used in places where using $_REQUEST/... was okay in order to make the code consistent. --- doku.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doku.php') diff --git a/doku.php b/doku.php index 607303ca4..68976ebb3 100644 --- a/doku.php +++ b/doku.php @@ -29,7 +29,7 @@ if(isset($_SERVER['HTTP_X_DOKUWIKI_DO'])) { require_once(DOKU_INC.'inc/init.php'); //import variables -$_REQUEST['id'] = str_replace("\xC2\xAD", '', $INPUT->str('id')); //soft-hyphen +$INPUT->set('id', str_replace("\xC2\xAD", '', $INPUT->str('id'))); //soft-hyphen $QUERY = trim($INPUT->str('id')); $ID = getID(); -- cgit v1.2.3 From 5721a1547938df76003c6d91ea003dc1c70abd94 Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Wed, 6 Mar 2013 14:02:31 +0100 Subject: Release preparations --- doku.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doku.php') diff --git a/doku.php b/doku.php index 68976ebb3..46c64c535 100644 --- a/doku.php +++ b/doku.php @@ -9,7 +9,7 @@ */ // update message version -$updateVersion = 38; +$updateVersion = 39; // xdebug_start_profiling(); -- cgit v1.2.3 From ead122f7cf2bcfdcecfa1a433014cc0d55ade898 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 5 May 2013 19:59:29 +0200 Subject: don't pass unused variable in doku.php FS#2774 --- doku.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doku.php') 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); -- cgit v1.2.3 From 2a5a1456564635ddbca06edbc902e7f820d2a97b Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Fri, 10 May 2013 14:34:29 +0200 Subject: Release preparation --- doku.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doku.php') diff --git a/doku.php b/doku.php index c058bb64a..9aeb30013 100644 --- a/doku.php +++ b/doku.php @@ -9,7 +9,7 @@ */ // update message version -$updateVersion = 39; +$updateVersion = 40; // xdebug_start_profiling(); -- cgit v1.2.3 From c594dd1e99b18f3c73464d7fc17f1759300cffeb Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 16 Jun 2013 20:13:06 +0200 Subject: message increase for hotfix --- doku.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doku.php') diff --git a/doku.php b/doku.php index 9aeb30013..777a68df8 100644 --- a/doku.php +++ b/doku.php @@ -9,7 +9,7 @@ */ // update message version -$updateVersion = 40; +$updateVersion = 40.1; // xdebug_start_profiling(); -- cgit v1.2.3