From 0d3c82ecf09ea8783a42265a3b8409f53caebc0e Mon Sep 17 00:00:00 2001 From: "johnny@pittpc.com" Date: Wed, 18 Sep 2019 19:00:57 -0400 Subject: [PATCH] Use not empty instead of isset for recurring notes --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 0e45e275..c17e8469 100644 --- a/post.php +++ b/post.php @@ -2028,7 +2028,7 @@ if(isset($_POST['save_recurring'])){ } - if(isset($_POST['recurring_note'])){ + if(!empty($_POST['recurring_note'])){ $recurring_note = strip_tags(mysqli_real_escape_string($mysqli,$_POST['recurring_note']));