Bugfix: There are some problems with Friendica installed in subdirectories

This commit is contained in:
Michael Vogel 2015-08-14 00:13:23 +02:00
parent 4663df5b2b
commit 0e9b2c132a
2 changed files with 3 additions and 3 deletions

View file

@ -121,13 +121,13 @@ function regmod_content(&$a) {
if($cmd === 'deny') {
user_deny($hash);
goaway("/admin/users/");
goaway($a->get_baseurl()."/admin/users/");
killme();
}
if($cmd === 'allow') {
user_allow($hash);
goaway("/admin/users/");
goaway($a->get_baseurl()."/admin/users/");
killme();
}
}