From: Michael Date: Wed, 28 Mar 2018 08:09:45 +0000 (+0000) Subject: A relocation hadn't changed the hostname X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9bfc7bf5849e2fea27329df1a886c069ff0c96f3;p=friendica.git A relocation hadn't changed the hostname --- diff --git a/mod/admin.php b/mod/admin.php index e4d3b0a751..3cbb70d3c5 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -871,8 +871,9 @@ function admin_page_site_post(App $a) update_table("gcontact", ['connect', 'addr'], $old_host, $new_host); // update config - $a->set_baseurl($new_url); + Config::set('system', 'hostname', parse_url($new_url, PHP_URL_HOST)); Config::set('system', 'url', $new_url); + $a->set_baseurl($new_url); // send relocate $users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0");