From 775a5f08c501acc565c69659022bc31052677485 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 28 Aug 2009 20:06:42 +0000 Subject: Fixes #1196: ElggEntity::disable() now accepts a 2nd arg for recursive. New users are not recursively disabled for plugins that need to create entities owned by the new user upon entity creation. git-svn-id: https://code.elgg.org/elgg/trunk@3450 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/register.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'actions/register.php') diff --git a/actions/register.php b/actions/register.php index 27d9ca23f..75721822c 100644 --- a/actions/register.php +++ b/actions/register.php @@ -55,7 +55,9 @@ request_user_validation($guid); if (!$new_user->admin) - $new_user->disable('new_user'); // Now disable if not an admin + $new_user->disable('new_user', false); // Now disable if not an admin + // Don't do a recursive disable. Any entities owned by the user at this point + // are products of plugins that system_message(sprintf(elgg_echo("registerok"),$CONFIG->sitename)); -- cgit v1.2.3