summaryrefslogtreecommitdiff
path: root/lib/plugins/acl/ajax.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2010-03-12 14:11:50 +0100
committerAndreas Gohr <andi@splitbrain.org>2010-03-12 14:11:50 +0100
commitd7879495eef6e6a998f5d727304e88dfa5420108 (patch)
tree720cee6a7b738e5fec32492b4f6c1cf69312583d /lib/plugins/acl/ajax.php
parent84645d8c01570c5ea4cda556e70beccdec25ee22 (diff)
parent05ed2c25ea0dc45eef2af0f9f4176c939af41100 (diff)
downloadrpg-d7879495eef6e6a998f5d727304e88dfa5420108.tar.gz
rpg-d7879495eef6e6a998f5d727304e88dfa5420108.tar.bz2
Merge branch 'requireall'
Conflicts: inc/fulltext.php
Diffstat (limited to 'lib/plugins/acl/ajax.php')
-rw-r--r--lib/plugins/acl/ajax.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/plugins/acl/ajax.php b/lib/plugins/acl/ajax.php
index d3e88d932..d91586a5d 100644
--- a/lib/plugins/acl/ajax.php
+++ b/lib/plugins/acl/ajax.php
@@ -13,9 +13,6 @@ if(!count($_POST) && $HTTP_RAW_POST_DATA){
if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../');
require_once(DOKU_INC.'inc/init.php');
-require_once(DOKU_INC.'inc/common.php');
-require_once(DOKU_INC.'inc/pageutils.php');
-require_once(DOKU_INC.'inc/auth.php');
//close session
session_write_close();
@@ -24,8 +21,6 @@ if(!checkSecurityToken()) die('CRSF Attack');
$ID = getID();
-require_once(DOKU_INC.'inc/pluginutils.php');
-require_once(DOKU_INC.'inc/html.php');
$acl = plugin_load('admin','acl');
$acl->handle();
@@ -35,7 +30,6 @@ header('Content-Type: text/html; charset=utf-8');
if($ajax == 'info'){
$acl->_html_info();
}elseif($ajax == 'tree'){
- require_once(DOKU_INC.'inc/search.php');
global $conf;
global $ID;