From d7fd8cc736db6a3a93187a5b0319ab6c1ac0cfa6 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Fri, 4 Mar 2022 14:38:53 -0500 Subject: [PATCH] Fix invoice to recurring sent to wrong destination --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 99d09f6d..eb92f1ed 100644 --- a/post.php +++ b/post.php @@ -2803,7 +2803,7 @@ if(isset($_POST['add_invoice_recurring'])){ $_SESSION['alert_message'] = "Created recurring Invoice from this Invoice"; - header("Location: recurring.php?recurring_id=$recurring_id"); + header("Location: recurring_invoice.php?recurring_id=$recurring_id"); }