mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-05 19:23:49 +00:00
On domain and default settings changes name to type.
This commit is contained in:
@@ -63,7 +63,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
//check for all required data
|
||||
//if (strlen($default_setting_category) == 0) { $msg .= "Please provide: Category<br>\n"; }
|
||||
//if (strlen($default_setting_subcategory) == 0) { $msg .= "Please provide: Subcategory<br>\n"; }
|
||||
//if (strlen($default_setting_name) == 0) { $msg .= "Please provide: Name<br>\n"; }
|
||||
//if (strlen($default_setting_name) == 0) { $msg .= "Please provide: Type<br>\n"; }
|
||||
//if (strlen($default_setting_value) == 0) { $msg .= "Please provide: Value<br>\n"; }
|
||||
//if (strlen($default_setting_enabled) == 0) { $msg .= "Please provide: Enabled<br>\n"; }
|
||||
//if (strlen($default_setting_description) == 0) { $msg .= "Please provide: Description<br>\n"; }
|
||||
@@ -210,12 +210,12 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
||||
echo " Name:\n";
|
||||
echo " Type:\n";
|
||||
echo "</td>\n";
|
||||
echo "<td class='vtable' align='left'>\n";
|
||||
echo " <input class='formfld' type='text' name='default_setting_name' maxlength='255' value=\"$default_setting_name\">\n";
|
||||
echo "<br />\n";
|
||||
echo "Enter the name.\n";
|
||||
echo "Enter the type.\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@ require_once "includes/paging.php";
|
||||
echo " <b>".ucfirst($row['default_setting_category'])."</b> </td></tr>\n";
|
||||
echo "<tr>\n";
|
||||
echo th_order_by('default_setting_subcategory', 'Category', $order_by, $order);
|
||||
echo th_order_by('default_setting_name', 'Name', $order_by, $order);
|
||||
echo th_order_by('default_setting_name', 'Type', $order_by, $order);
|
||||
echo th_order_by('default_setting_value', 'Value', $order_by, $order);
|
||||
echo th_order_by('default_setting_enabled', 'Enabled', $order_by, $order);
|
||||
echo th_order_by('default_setting_description', 'Description', $order_by, $order);
|
||||
|
||||
@@ -112,7 +112,7 @@ require_once "includes/paging.php";
|
||||
echo " <b>".ucfirst($row['domain_setting_category'])."</b> </td></tr>\n";
|
||||
echo "<tr>\n";
|
||||
echo th_order_by('domain_setting_subcategory', 'Category', $order_by, $order);
|
||||
echo th_order_by('domain_setting_name', 'Name', $order_by, $order);
|
||||
echo th_order_by('domain_setting_name', 'Type', $order_by, $order);
|
||||
echo th_order_by('domain_setting_value', 'Value', $order_by, $order);
|
||||
echo th_order_by('domain_setting_enabled', 'Enabled', $order_by, $order);
|
||||
echo th_order_by('domain_setting_description', 'Description', $order_by, $order);
|
||||
|
||||
@@ -68,7 +68,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
//if (strlen($domain_uuid) == 0) { $msg .= "Please provide: domain_uuid<br>\n"; }
|
||||
//if (strlen($domain_setting_category) == 0) { $msg .= "Please provide: Category<br>\n"; }
|
||||
//if (strlen($domain_setting_subcategory) == 0) { $msg .= "Please provide: Subcategory<br>\n"; }
|
||||
//if (strlen($domain_setting_name) == 0) { $msg .= "Please provide: Name<br>\n"; }
|
||||
//if (strlen($domain_setting_name) == 0) { $msg .= "Please provide: Type<br>\n"; }
|
||||
//if (strlen($domain_setting_value) == 0) { $msg .= "Please provide: Value<br>\n"; }
|
||||
//if (strlen($domain_setting_enabled) == 0) { $msg .= "Please provide: Enabled<br>\n"; }
|
||||
//if (strlen($domain_setting_description) == 0) { $msg .= "Please provide: Description<br>\n"; }
|
||||
@@ -219,12 +219,12 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
|
||||
echo "<tr>\n";
|
||||
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
||||
echo " Name:\n";
|
||||
echo " Type:\n";
|
||||
echo "</td>\n";
|
||||
echo "<td class='vtable' align='left'>\n";
|
||||
echo " <input class='formfld' type='text' name='domain_setting_name' maxlength='255' value=\"$domain_setting_name\">\n";
|
||||
echo "<br />\n";
|
||||
echo "Enter the name.\n";
|
||||
echo "Enter the type.\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user