settings page channel permissions front-end (needs back-end still)

This commit is contained in:
friendica
2012-11-01 19:47:10 -07:00
parent 1021a4d476
commit 3bf5677797
8 changed files with 106 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ function manage_content(&$a) {
$channels = null;
if(local_user()) {
$r = q("select channel.*, xchan.* from channel left join xchan on channel.channel_hash = xchan.xchan_hash where channel.channel_account_id = %d ",
$r = q("select channel.*, xchan.* from channel left join xchan on channel.channel_hash = xchan.xchan_hash where channel.channel_account_id = %d order by channel_name ",
intval(get_account_id())
);