diff options
author | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-14 14:30:37 +0000 |
---|---|---|
committer | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-14 14:30:37 +0000 |
commit | 95d7c27e5a65f6df5221842bb4427619ccec3327 (patch) | |
tree | de044918562a24c6f069f8cfc9ad24895ddb9abe /engine/handlers | |
parent | a540eee93088628adeb3127227f401592ce4403c (diff) | |
download | elgg-95d7c27e5a65f6df5221842bb4427619ccec3327.tar.gz elgg-95d7c27e5a65f6df5221842bb4427619ccec3327.tar.bz2 |
Updating core code to allow public pages using new Walled Garden functionality.
git-svn-id: http://code.elgg.org/elgg/trunk@6047 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/handlers')
-rw-r--r-- | engine/handlers/action_handler.php | 1 | ||||
-rw-r--r-- | engine/handlers/cron_handler.php | 1 | ||||
-rw-r--r-- | engine/handlers/pagehandler.php | 1 | ||||
-rw-r--r-- | engine/handlers/service_handler.php | 1 | ||||
-rw-r--r-- | engine/handlers/xml-rpc_handler.php | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/engine/handlers/action_handler.php b/engine/handlers/action_handler.php index 52c1a2633..f99e1efdc 100644 --- a/engine/handlers/action_handler.php +++ b/engine/handlers/action_handler.php @@ -12,7 +12,6 @@ /** * Load Elgg framework */ -define('externalpage',true); require_once("../start.php"); $action = get_input("action"); action($action);
\ No newline at end of file diff --git a/engine/handlers/cron_handler.php b/engine/handlers/cron_handler.php index 37a0335f6..a86cf7f4c 100644 --- a/engine/handlers/cron_handler.php +++ b/engine/handlers/cron_handler.php @@ -9,7 +9,6 @@ */ // Load Elgg engine -define('externalpage',true); require_once("../start.php"); global $CONFIG; diff --git a/engine/handlers/pagehandler.php b/engine/handlers/pagehandler.php index a0837caa1..24bef4d03 100644 --- a/engine/handlers/pagehandler.php +++ b/engine/handlers/pagehandler.php @@ -9,7 +9,6 @@ */ // Load Elgg engine -// define('externalpage',true); require_once("../start.php"); // Get input diff --git a/engine/handlers/service_handler.php b/engine/handlers/service_handler.php index 51ec2a689..4cc54a987 100644 --- a/engine/handlers/service_handler.php +++ b/engine/handlers/service_handler.php @@ -10,7 +10,6 @@ // Load Elgg engine -define('externalpage',true); require_once("../start.php"); // Get input diff --git a/engine/handlers/xml-rpc_handler.php b/engine/handlers/xml-rpc_handler.php index 26c1454bf..67d99a6ac 100644 --- a/engine/handlers/xml-rpc_handler.php +++ b/engine/handlers/xml-rpc_handler.php @@ -9,7 +9,6 @@ */ // Load Elgg engine -define('externalpage',true); require_once("../start.php"); global $CONFIG; |