From 60310d866367f2254f34c931572ba367e2637052 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 10 Aug 2019 10:25:12 -0600 Subject: [PATCH] Update conference_interactive_inc.php --- app/conferences_active/conference_interactive_inc.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/conferences_active/conference_interactive_inc.php b/app/conferences_active/conference_interactive_inc.php index bc677f52da..9c507c06ad 100644 --- a/app/conferences_active/conference_interactive_inc.php +++ b/app/conferences_active/conference_interactive_inc.php @@ -44,7 +44,9 @@ $text = $language->get(); //get the http get or post and set it as php variables - $conference_uuid = check_str($_REQUEST["c"]); + if (is_uuid($_REQUEST["c"])) { + $conference_uuid = $_REQUEST["c"]; + } //replace the space with underscore $conference_name = $conference_uuid.'@'.$_SESSION['domain_name'];