In the rare case where a default channel is not selected but channels actually exist, you should be able to visit /manage and set a default channel. Originally I believe this may have been possible but the ability was lost when delegation was added to the interface - which requires an active channel. Remove the active channel restriction so that the rest of the interface works (channel selections can be made and the ability to set a default is provided) however delegation info isn't presented unless there is an active channel.

This commit is contained in:
zotlabs 2017-04-20 19:52:50 -07:00
parent f52c670c05
commit 2d90b831f0

View File

@ -46,7 +46,6 @@ class Manage extends \Zotlabs\Web\Controller {
$channels = null;
if(local_channel()) {
$r = q("select channel.*, xchan.* from channel left join xchan on channel.channel_hash = xchan.xchan_hash where channel.channel_account_id = %d and channel_removed = 0 order by channel_name ",
intval(get_account_id())
);
@ -126,6 +125,7 @@ class Manage extends \Zotlabs\Web\Controller {
}
}
}
}
$r = q("select count(channel_id) as total from channel where channel_account_id = %d and channel_removed = 0",
@ -138,15 +138,19 @@ class Manage extends \Zotlabs\Web\Controller {
else {
$channel_usage_message = '';
}
}
$create = array( 'new_channel', t('Create a new channel'), t('Create New'));
$delegates = null;
if(local_channel()) {
$delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where
abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = '1' )",
intval(local_channel()),
intval(local_channel())
);
}
if($delegates) {
for($x = 0; $x < count($delegates); $x ++) {