Allow a space in the setting category name

This commit is contained in:
FusionPBX
2025-05-08 09:02:50 -06:00
committed by GitHub
parent 399c071961
commit a88062fb1e

View File

@@ -81,7 +81,7 @@
//sanitize the variables
$search = preg_replace('#[^a-zA-Z0-9_\-\. ]#', '', $search);
$default_setting_category = preg_replace('#[^a-zA-Z0-9_\-\.]#', '', $default_setting_category);
$default_setting_category = preg_replace('#[^a-zA-Z0-9_\-\. ]#', '', $default_setting_category);
//build the query string
$query_string = '';