aboutsummaryrefslogtreecommitdiffstats
path: root/mod/manage.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-01 19:47:10 -0700
committerfriendica <info@friendica.com>2012-11-01 19:47:10 -0700
commit3bf5677797a6a40dacac2ddcbe9271aea508e421 (patch)
treefa7e37883391fa81af4bfe5601cfaeca15aac39e /mod/manage.php
parent1021a4d4763974c3c40f40a0ca9682f1fcc3f6ee (diff)
downloadvolse-hubzilla-3bf5677797a6a40dacac2ddcbe9271aea508e421.tar.gz
volse-hubzilla-3bf5677797a6a40dacac2ddcbe9271aea508e421.tar.bz2
volse-hubzilla-3bf5677797a6a40dacac2ddcbe9271aea508e421.zip
settings page channel permissions front-end (needs back-end still)
Diffstat (limited to 'mod/manage.php')
-rw-r--r--mod/manage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/manage.php b/mod/manage.php
index ac4454567..040857f5e 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -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())
);