Remove check_str function call

This function has been deprecated.
This commit is contained in:
markjcrane
2025-11-01 20:55:23 -06:00
parent d97c3c5845
commit 1c61513e90
7 changed files with 36 additions and 32 deletions
+7 -7
View File
@@ -143,13 +143,13 @@ Mark J Crane <markjcrane@fusionpbx.com>
}
// retrieve submitted values
$project_notifications = check_str($_POST["project_notifications"]);
$project_security = check_str($_POST["project_security"]);
$project_releases = check_str($_POST["project_releases"]);
$project_events = check_str($_POST["project_events"]);
$project_news = check_str($_POST["project_news"]);
$project_notification_method = check_str($_POST["project_notification_method"]);
$project_notification_recipient = check_str($_POST["project_notification_recipient"]);
$project_notifications = $_POST["project_notifications"] ?? '';
$project_security = $_POST["project_security"] ?? '';
$project_releases = $_POST["project_releases"] ?? '';
$project_events = $_POST["project_events"] ?? '';
$project_news = $_POST["project_news"] ?? '';
$project_notification_method = $_POST["project_notification_method"] ?? '';
$project_notification_recipient = $_POST["project_notification_recipient"] ?? '';
// get local project notification participation flag
$sql = "select project_notifications from v_notifications";