diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-02 13:57:00 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-02 13:57:00 +0000 |
commit | 8773409b24653623fdd590e8be6d64b52b4a33a5 (patch) | |
tree | 1cba42262153461805e94688ffc02c7647f881f7 | |
parent | 8223faeddad7da792e577184187ce219548ea5b5 (diff) | |
download | elgg-8773409b24653623fdd590e8be6d64b52b4a33a5.tar.gz elgg-8773409b24653623fdd590e8be6d64b52b4a33a5.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Moved handlers to engine/handlers/ to avoid them running foul of the callpath_gatekeeper.. UPDATE YOUR .htaccess!
git-svn-id: https://code.elgg.org/elgg/trunk@771 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | action_handler.php | 20 | ||||
-rw-r--r-- | pagehandler.php | 26 |
2 files changed, 0 insertions, 46 deletions
diff --git a/action_handler.php b/action_handler.php deleted file mode 100644 index e78d6fca0..000000000 --- a/action_handler.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php
-
- /**
- * Elgg action handler
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
- /**
- * Load Elgg framework
- */
- require_once(dirname(__FILE__) . "/engine/start.php");
- $action = get_input("action");
- action($action);
-
-?>
diff --git a/pagehandler.php b/pagehandler.php deleted file mode 100644 index eceff9ce1..000000000 --- a/pagehandler.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php
-
- /**
- * Elgg page handler
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
-
- // Load Elgg engine
- require_once(dirname(__FILE__) . "/engine/start.php");
-
- // Get input
- $handler = get_input('handler');
- $page = get_input('page');
-
- // Call the page handler functions
- if (!page_handler($handler, $page)) {
- forward();
- }
-
-?>
\ No newline at end of file |