mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Use boolean setting as true boolean (#7284)
* use boolean setting as true boolean * Update settings class to use the php filter_var function for boolean Using the built-in filter type for boolean seems like a better option as they are faster, already hardened, and more widely tested. I found this better method used originally by Mark J. Crane in 2022 in the content.php page so I included it here. * Update settings class to use the php filter_var function for boolean Using the built-in filter type for boolean seems like a better option as they are faster, already hardened, and more widely tested. I found this better method used originally by Mark J. Crane in 2022 in the content.php page so I included it here.
This commit is contained in:
@@ -260,8 +260,8 @@
|
||||
|
||||
//get the domain active and inactive counts
|
||||
$sql = "select ";
|
||||
$sql .= "(select count(*) from v_domains where domain_enabled = 'true') as active, ";
|
||||
$sql .= "(select count(*) from v_domains where domain_enabled = 'false') as inactive; ";
|
||||
$sql .= "(select count(domain_uuid) from v_domains where domain_enabled = 'true') as active, ";
|
||||
$sql .= "(select count(domain_uuid) from v_domains where domain_enabled = 'false') as inactive; ";
|
||||
$row = $database->select($sql, null, 'row');
|
||||
$domain_active = $row['active'];
|
||||
$domain_inactive = $row['inactive'];
|
||||
|
||||
@@ -49,9 +49,9 @@
|
||||
if (permission_exists("system_view_support")) {
|
||||
$setting_size = !empty($_SESSION["editor"]["font_size"]["text"]) ? $_SESSION["editor"]["font_size"]["text"] : '12px';
|
||||
$setting_theme = !empty($_SESSION["editor"]["theme"]["text"]) ? $_SESSION["editor"]["theme"]["text"] : 'cobalt';
|
||||
$setting_invisibles = !empty($_SESSION["editor"]["invisibles"]["boolean"]) ? $_SESSION["editor"]["invisibles"]["boolean"] : 'false';
|
||||
$setting_indenting = !empty($_SESSION["editor"]["indent_guides"]["boolean"]) ? $_SESSION["editor"]["indent_guides"]["boolean"] : 'false';
|
||||
$setting_numbering = !empty($_SESSION["editor"]["line_numbers"]["boolean"]) ? $_SESSION["editor"]["line_numbers"]["boolean"] : 'true';
|
||||
$setting_invisibles = filter_var($_SESSION["editor"]["invisibles"]["boolean"] ?? false, FILTER_VALIDATE_BOOL);
|
||||
$setting_indenting = filter_var($_SESSION["editor"]["indent_guides"]["boolean"] ?? false, FILTER_VALIDATE_BOOL);
|
||||
$setting_numbering = filter_var($_SESSION["editor"]["line_numbers"]["boolean"] ?? true, FILTER_VALIDATE_BOOL);
|
||||
}
|
||||
|
||||
//additional includes
|
||||
|
||||
Reference in New Issue
Block a user