aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-01-19 22:28:46 -0800
committerfriendica <info@friendica.com>2014-01-19 22:28:46 -0800
commite54a5010588e58f4fa1b348b7e46a34360c6bce2 (patch)
tree3cb98a3bd11628e58eb77c455c1df6ef542cb287 /include
parent82a5eb5d90d99cfd9fc3a319235c2f24cff2de67 (diff)
parent26dfcecf054e19616f198872b66c7645270f4430 (diff)
downloadvolse-hubzilla-e54a5010588e58f4fa1b348b7e46a34360c6bce2.tar.gz
volse-hubzilla-e54a5010588e58f4fa1b348b7e46a34360c6bce2.tar.bz2
volse-hubzilla-e54a5010588e58f4fa1b348b7e46a34360c6bce2.zip
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include')
-rw-r--r--include/reddav.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/reddav.php b/include/reddav.php
index 838ead7b7..0d2aac19e 100644
--- a/include/reddav.php
+++ b/include/reddav.php
@@ -50,6 +50,9 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
function getChild($name) {
logger('RedDirectory::getChild : ' . $name, LOGGER_DATA);
+ $name = str_replace(array('?f=','&f='),array('',''),$name);
+ $name = preg_replace('/[\?&]zid=(.*?)([\?&]|$)/ism','',$name);
+ logger('RedDirectory::getChild post strip zid: ' . $name, LOGGER_DATA);
if(get_config('system','block_public') && (! $this->auth->channel_id) && (! $this->auth->observer)) {