diff options
author | friendica <info@friendica.com> | 2014-01-18 21:46:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-18 21:46:16 -0800 |
commit | 3f7032e542e3c451507fc9266ab3536155c8190f (patch) | |
tree | 62c0842da5da6d30b2ad8bc77a1f1bc55e423cc2 /include/reddav.php | |
parent | db67f08d3c3ae3925479844e0f9b25bab13dabdc (diff) | |
parent | 331609cb871517bd35416669492488a3bc14702d (diff) | |
download | volse-hubzilla-3f7032e542e3c451507fc9266ab3536155c8190f.tar.gz volse-hubzilla-3f7032e542e3c451507fc9266ab3536155c8190f.tar.bz2 volse-hubzilla-3f7032e542e3c451507fc9266ab3536155c8190f.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include/reddav.php')
-rw-r--r-- | include/reddav.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/reddav.php b/include/reddav.php index c53838297..838ead7b7 100644 --- a/include/reddav.php +++ b/include/reddav.php @@ -101,8 +101,9 @@ class RedDirectory extends DAV\Node implements DAV\ICollection { $c = q("select * from channel where channel_id = %d and not (channel_pageflags & %d) limit 1", - intval(PAGE_REMOVED), - intval($this->auth->owner_id) + intval($this->auth->owner_id), + intval(PAGE_REMOVED) + ); if(! $c) { @@ -988,4 +989,4 @@ class RedBrowser extends DAV\Browser\Plugin { } -}
\ No newline at end of file +} |