From d49afead676f1a5b04daccd5852086e515fcc876 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 16 Feb 2016 18:36:29 -0800 Subject: allow redirection to site workflow page even if auto channel create is applied --- mod/register.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'mod/register.php') diff --git a/mod/register.php b/mod/register.php index 411d34d64..795de3f57 100644 --- a/mod/register.php +++ b/mod/register.php @@ -145,6 +145,7 @@ function register_post(&$a) { authenticate_success($result['account'],true,false,true); $new_channel = false; + $next_page = 'new_channel'; if(get_config('system','auto_channel_create') || UNO) { $new_channel = auto_channel_create($result['account']['account_id']); @@ -156,10 +157,10 @@ function register_post(&$a) { else $new_channel = false; } - if(! $new_channel) { - if(! strlen($next_page = get_config('system','workflow_register_next'))) - $next_page = 'new_channel'; + $x = get_config('system','workflow_register_next'); + if($x) { + $next_page = $x; $_SESSION['workflow'] = true; } -- cgit v1.2.3