Merge pull request #4703 from annando/fix-relocation
A relocation hadn't changed the hostname
This commit is contained in:
commit
752a9f4b08
|
@ -871,8 +871,9 @@ function admin_page_site_post(App $a)
|
||||||
update_table("gcontact", ['connect', 'addr'], $old_host, $new_host);
|
update_table("gcontact", ['connect', 'addr'], $old_host, $new_host);
|
||||||
|
|
||||||
// update config
|
// update config
|
||||||
$a->set_baseurl($new_url);
|
Config::set('system', 'hostname', parse_url($new_url, PHP_URL_HOST));
|
||||||
Config::set('system', 'url', $new_url);
|
Config::set('system', 'url', $new_url);
|
||||||
|
$a->set_baseurl($new_url);
|
||||||
|
|
||||||
// send relocate
|
// send relocate
|
||||||
$users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0");
|
$users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0");
|
||||||
|
|
Loading…
Reference in a new issue