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'];