Skip to content
Snippets Groups Projects
Commit 06853c0e authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed namespace subscription file location FS#2013

If you subscribed to namespaces other than the root namespace using the
new develonly subscription feature you'll need to renew your
subscriptions.
parent db6f7eae
No related branches found
No related tags found
No related merge requests found
......@@ -29,13 +29,11 @@ function subscription_filename($id) {
$meta_fname = '.mlist';
if ((substr($id, -1, 1) === ':')) {
$meta_froot = getNS($id);
if ($meta_froot === false) {
$meta_fname = '/' . $meta_fname;
}
$meta_fname = '/' . $meta_fname;
} else {
$meta_froot = $id;
}
return metaFN($meta_froot, $meta_fname);
return metaFN((string) $meta_froot, $meta_fname);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment