From ff7488eed388f0e077620e758f50c2acc8e88816 Mon Sep 17 00:00:00 2001 From: Joseph <71848841+junction1153@users.noreply.github.com> Date: Tue, 5 Apr 2022 23:15:54 -0400 Subject: [PATCH] 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. --- app/call_forward/call_forward_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/call_forward/call_forward_edit.php b/app/call_forward/call_forward_edit.php index 537fcd131a..8b2ee8a6da 100644 --- a/app/call_forward/call_forward_edit.php +++ b/app/call_forward/call_forward_edit.php @@ -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; }