mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-03-11 19:18:46 +00:00
Database class integration. Modify database class singular() method to support table names ending in 'ses', such as v_databases.
This commit is contained in:
@@ -38,7 +38,7 @@ else {
|
||||
$language = new text;
|
||||
$text = $language->get();
|
||||
|
||||
$search = check_str($_REQUEST['search']);
|
||||
$search = $_REQUEST['search'];
|
||||
|
||||
require "resources/classes/domains.php";
|
||||
$domain = new domains();
|
||||
@@ -46,6 +46,6 @@ $domain->db = $db;
|
||||
$domain->set();
|
||||
|
||||
message::add($text['message-settings_reloaded']);
|
||||
header("Location: default_settings.php".(($search != '') ? "?search=".$search : null));
|
||||
header("Location: default_settings.php".($search != '' ? "?search=".$search : null));
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user