From caef932790b72de1efa5b8ef2065dd3ca3b9eb5a Mon Sep 17 00:00:00 2001 From: cash Date: Tue, 30 Nov 2010 02:25:22 +0000 Subject: Refs #2428 removed a few CONFIG uses in core git-svn-id: http://code.elgg.org/elgg/trunk@7480 36083f99-b078-4883-b0ff-0f9b5a30f544 --- pages/account/register.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'pages/account/register.php') diff --git a/pages/account/register.php b/pages/account/register.php index f18061dfc..76319e0d6 100644 --- a/pages/account/register.php +++ b/pages/account/register.php @@ -15,16 +15,16 @@ /** * Start the Elgg engine * - * Why? In the case this file is called thru a page handler: $CONFIG - * is not within the global scope (the page handler function does not include it). - * BUT, there _might_ exist direct calls to this file, requiring the engine + * Why? + * Tthere _might_ exist direct calls to this file, requiring the engine * to be started. Logic for both cases follow. + * + * @todo remove as direct calls were deprecated in 1.7 */ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); -global $CONFIG; // check new registration allowed -if (!$CONFIG->allow_registration) { +if (elgg_get_config('allow_registration') == false) { register_error(elgg_echo('registerdisabled')); forward(); } @@ -38,8 +38,10 @@ if (isloggedin()) { } $area1 = elgg_view_title(elgg_echo("register")); -$area2 = elgg_view("account/forms/register", - array('friend_guid' => $friend_guid, 'invitecode' => $invitecode)); +$area2 = elgg_view("account/forms/register", array( + 'friend_guid' => $friend_guid, + 'invitecode' => $invitecode) +); $body = elgg_view_layout("one_column_with_sidebar", array('content' => $area1 . $area2)); echo elgg_view_page(elgg_echo("register"), $body); -- cgit v1.2.3