Resolve bug when saving CFWD settings (#6337)

calls.php no longer exists as of recent updates. We are now redirecting to call_forward.php instead of calls.php file.
This commit is contained in:
Joseph 2022-04-05 23:15:54 -04:00 committed by GitHub
parent 3f8e4328fe
commit ff7488eed3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@
$token = new token;
if (!$token->validate($_SERVER['PHP_SELF'])) {
message::add($text['message-invalid_token'],'negative');
header('Location: calls.php');
header('Location: call_forward.php');
exit;
}