Fix the group_members.php link by adding the underscore.

This commit is contained in:
FusionPBX 2020-05-08 19:23:21 -06:00 committed by GitHub
parent 0d84692809
commit a7ec8a4413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@
//validate the token
$token = new token;
if (!$token->validate('/core/groups/groupmembers.php')) {
if (!$token->validate('/core/groups/group_members.php')) {
message::add($text['message-invalid_token'],'negative');
header('Location: groups.php');
exit;
@ -81,6 +81,6 @@
}
//redirect the user
header("Location: groupmembers.php?group_uuid=".$group_uuid."&group_name=".$group_name);
header("Location: group_members.php?group_uuid=".urlencode($group_uuid)."&group_name=".urlencode($group_name));
?>