From 9bf4508ffb626d1aa2c9591b700e985b00abe577 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 1 Nov 2012 15:45:02 -0700 Subject: cleanup channel management --- mod/manage.php | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'mod') diff --git a/mod/manage.php b/mod/manage.php index 9fbcea55d..d29830f90 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -11,6 +11,17 @@ function manage_content(&$a) { $change_channel = ((argc() > 1) ? intval(argv(1)) : 0); + if((argc() > 2) && (argv(2) === 'primary')) { + q("update channel set channel_primary = 0 where channel_account_id = %d", + intval(get_account_id()) + ); + q("update channel set channel_primary = 1 where channel_id = %d and channel_account_id = %d limit 1", + intval($change_channel), + intval(get_account_id()) + ); + goaway(z_root() . '/manage'); + } + if($change_channel) { $r = change_channel($change_channel); @@ -39,10 +50,12 @@ function manage_content(&$a) { $o = replace_macros(get_markup_template('channels.tpl'), array( - '$header' => t('Channel Manager'), - '$desc' => t('Attach to one of your channels by selecting it.'), - '$links' => $links, - '$all_channels' => $channels, + '$header' => t('Channel Manager'), + '$desc' => t('Attach to one of your channels by selecting it.'), + '$msg_primary' => t('Default Channel'), + '$msg_make_primary' => t('Make Default'), + '$links' => $links, + '$all_channels' => $channels, )); -- cgit v1.2.3