diff options
author | friendica <info@friendica.com> | 2013-11-12 18:27:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-12 18:27:36 -0800 |
commit | b26989bb65615f7827047f87b3c4490f45b1f3e1 (patch) | |
tree | 88ca61f42dcafb730f43462bcb43ee514be802a6 /mod/manage.php | |
parent | 061b438f97e40baf03cc449eac2aa4f1de33b60b (diff) | |
download | volse-hubzilla-b26989bb65615f7827047f87b3c4490f45b1f3e1.tar.gz volse-hubzilla-b26989bb65615f7827047f87b3c4490f45b1f3e1.tar.bz2 volse-hubzilla-b26989bb65615f7827047f87b3c4490f45b1f3e1.zip |
removeme sort of works for a single channel - lots of loose ends to deal with but it's a start
Diffstat (limited to 'mod/manage.php')
-rw-r--r-- | mod/manage.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/manage.php b/mod/manage.php index 27e45aa47..a2f65b271 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -36,8 +36,9 @@ 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 order by channel_name ", - intval(get_account_id()) + $r = q("select channel.*, xchan.* from channel left join xchan on channel.channel_hash = xchan.xchan_hash where channel.channel_account_id = %d and not ( channel_pageflags & %d ) order by channel_name ", + intval(get_account_id()), + intval(PAGE_REMOVED) ); $selected_channel = null; |