improved directory registration - honour standalones and do the right thing

This commit is contained in:
friendica
2015-02-02 17:32:54 -08:00
parent 08689db4ff
commit fb6deb113b
2 changed files with 15 additions and 3 deletions

View File

@@ -47,9 +47,14 @@ function regdir_init(&$a) {
json_return_and_die($result);
}
else {
$r = q("select site_url from site where site_flags in ( 1, 2 ) and site_realm = '%s'",
dbesc(get_directory_realm())
);
if($dirmode == DIRECTORY_MODE_STANDALONE) {
$r = array(array('site_url' => z_root()));
}
else {
$r = q("select site_url from site where site_flags in ( 1, 2 ) and site_realm = '%s'",
dbesc(get_directory_realm())
);
}
if($r) {
$result['success'] = true;
$result['directories'] = array();