diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-03-12 14:11:50 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-03-12 14:11:50 +0100 |
commit | d7879495eef6e6a998f5d727304e88dfa5420108 (patch) | |
tree | 720cee6a7b738e5fec32492b4f6c1cf69312583d /lib/plugins/acl/ajax.php | |
parent | 84645d8c01570c5ea4cda556e70beccdec25ee22 (diff) | |
parent | 05ed2c25ea0dc45eef2af0f9f4176c939af41100 (diff) | |
download | rpg-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.php | 6 |
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; |