mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Dialplans - List: Updates for PHP 8.1
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
if ($search) { $params[] = "search=".urlencode($search); }
|
||||
if ($order_by) { $params[] = "order_by=".urlencode($order_by); }
|
||||
if ($order) { $params[] = "order=".urlencode($order); }
|
||||
$list_page = 'dialplans.php'.($params ? '?'.implode('&', $params) : null);
|
||||
$list_page = 'dialplans.php'.(!empty($params) ? '?'.implode('&', $params) : null);
|
||||
unset($params);
|
||||
|
||||
//process action
|
||||
|
||||
Reference in New Issue
Block a user