mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
If search is not set use an empty string instead of null
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
//get posted data
|
||||
if (is_array($_POST['pin_numbers'])) {
|
||||
$action = $_POST['action'];
|
||||
$search = $_POST['search'];
|
||||
$search = $_POST['search'] ?? '';
|
||||
$pin_numbers = $_POST['pin_numbers'];
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
break;
|
||||
}
|
||||
|
||||
header('Location: pin_numbers.php'.($search != '' ? '?search='.urlencode($search) : null));
|
||||
header('Location: pin_numbers.php'.($search != '' ? '?search='.urlencode($search) : ''));
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user