aboutsummaryrefslogtreecommitdiff
path: root/engine/handlers/action_handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/handlers/action_handler.php')
-rw-r--r--engine/handlers/action_handler.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/engine/handlers/action_handler.php b/engine/handlers/action_handler.php
index f99e1efdc..8a1f1276b 100644
--- a/engine/handlers/action_handler.php
+++ b/engine/handlers/action_handler.php
@@ -1,17 +1,17 @@
<?php
-
/**
- * Elgg action handler
+ * Action handler.
+ *
+ * This file dispatches actions. It is called via a URL rewrite in .htaccess
+ * from http://site/action/. Anything after 'action/' is considered the action
+ * and will be passed to {@link action()}.
*
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
+ * @package Elgg.Core
+ * @subpackage Actions
+ * @link http://docs.elgg.org/Tutorials/Actions
*/
-/**
- * Load Elgg framework
- */
require_once("../start.php");
+
$action = get_input("action");
action($action); \ No newline at end of file