From 330ca9228857560164c963172fc8f5c289f16b42 Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 30 Sep 2010 22:52:15 +0000 Subject: Refs #2344 - move account pages into pages directory git-svn-id: http://code.elgg.org/elgg/trunk@6984 36083f99-b078-4883-b0ff-0f9b5a30f544 --- account/forgotten_password.php | 17 ---------------- account/register.php | 44 ------------------------------------------ 2 files changed, 61 deletions(-) delete mode 100644 account/forgotten_password.php delete mode 100644 account/register.php (limited to 'account') diff --git a/account/forgotten_password.php b/account/forgotten_password.php deleted file mode 100644 index 827b254c9..000000000 --- a/account/forgotten_password.php +++ /dev/null @@ -1,17 +0,0 @@ -allow_registration) { - register_error(elgg_echo('registerdisabled')); - forward(); -} - -$friend_guid = (int) get_input('friend_guid',0); -$invitecode = get_input('invitecode'); - -// If we're not logged in, display the registration page -if (!isloggedin()) { - $area1 = elgg_view_title(elgg_echo("register")); - $area2 = elgg_view("account/forms/register", array('friend_guid' => $friend_guid, 'invitecode' => $invitecode)); - page_draw(elgg_echo("register"), elgg_view_layout("one_column_with_sidebar", $area1 . $area2)); - -// Otherwise, forward to the index page -} else { - forward(); -} -- cgit v1.2.3