make wiki page mimetype default to wiki mimetype (this was the original intent but the wrong variable was used)

This commit is contained in:
zotlabs
2017-09-13 21:36:59 -07:00
parent b5966041be
commit 5be132f877
2 changed files with 4 additions and 2 deletions

View File

@@ -4187,7 +4187,9 @@ function zot_site_info($channel = null) {
$ret['site'] = [];
$ret['site']['url'] = z_root();
$ret['site']['url_sig'] = base64url_encode(rsa_sign(z_root(),$signing_key,$sig_method));
$ret['site']['zot_auth'] = z_root() . '/magic';
$ret['site']['post'] = z_root() . '/post';
$ret['site']['openWebAuth'] = z_root() . '/owa';
$ret['site']['authRedirect'] = z_root() . '/magic';
$ret['site']['key'] = get_config('system','pubkey');
$dirmode = get_config('system','directory_mode');