aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--action_handler.php20
-rw-r--r--pagehandler.php26
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