diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-28 15:56:31 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-28 15:56:31 -0800 |
commit | c3e365ef4718e4c9d06eb962cb3deeb9fb39a2d9 (patch) | |
tree | 6e96960fef9442e3053705f90b237107a18657aa /Zotlabs/Module/New_channel.php | |
parent | 21f464a5577e84b808fd56efdc49117a64c8dc30 (diff) | |
download | volse-hubzilla-c3e365ef4718e4c9d06eb962cb3deeb9fb39a2d9.tar.gz volse-hubzilla-c3e365ef4718e4c9d06eb962cb3deeb9fb39a2d9.tar.bz2 volse-hubzilla-c3e365ef4718e4c9d06eb962cb3deeb9fb39a2d9.zip |
Surface the ability to change the landing page after channel creation and create a 'go' module to present several possible things to do at this point. Change the default from 'settings' to 'profiles' so that the focus is more on you rather than the software configuration.
Diffstat (limited to 'Zotlabs/Module/New_channel.php')
-rw-r--r-- | Zotlabs/Module/New_channel.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php index 2b73fa191..9f2fea802 100644 --- a/Zotlabs/Module/New_channel.php +++ b/Zotlabs/Module/New_channel.php @@ -89,9 +89,7 @@ class New_channel extends \Zotlabs\Web\Controller { change_channel($result['channel']['channel_id']); - if(! strlen($next_page = get_config('system','workflow_channel_next'))) - $next_page = 'settings'; - + $next_page = get_config('system', 'workflow_channel_next', 'profiles'); goaway(z_root() . '/' . $next_page); } |