aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--register.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/register.php b/register.php
deleted file mode 100644
index 1eb65dc4c..000000000
--- a/register.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
- /**
- * Elgg registration page
- *
- * @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/
- */
-
- /**
- * Start the Elgg engine
- */
- require_once(dirname(__FILE__) . "/engine/start.php");
-
- $friend_guid = (int) get_input('friend_guid',0);
-
- // If we're not logged in, display the registration page
- if (!isloggedin()) {
- echo page_draw(elgg_echo('register'), elgg_view("account/forms/register", array('friend_guid' => $friend_guid)));
- // Otherwise, forward to the index page
- } else {
- forward();
- }
-
-?> \ No newline at end of file