\n";
echo "| \n";
@@ -380,12 +380,12 @@
echo " | ";
if (is_array($conference_users) && @sizeof($conference_users) != 0) {
- echo " \n";
+ echo " \n";
foreach ($conference_users as $field) {
echo " \n";
echo " | ".escape($field['username'])." | \n";
echo " \n";
- echo " $v_link_label_delete\n";
+ echo " $v_link_label_delete\n";
echo " | \n";
echo " \n";
}
@@ -399,7 +399,7 @@
echo " \n";
}
echo " ";
- echo " \n";
+ echo button::create(['type'=>'submit','label'=>$text['button-add'],'icon'=>$_SESSION['theme']['button_icon_add']]);
echo " \n";
echo " ".$text['description-user-add']."\n";
@@ -414,16 +414,16 @@
echo " ".$text['table-profile']."\n";
echo "\n";
echo "\n";
- echo " \n";
echo " \n";
echo "".$text['description-profile']."\n";
echo " | \n";
@@ -445,18 +445,18 @@
echo " ".$text['label-order']."\n";
echo "\n";
echo "\n";
- echo " \n";
+ echo " \n";
if (strlen(htmlspecialchars($dialplan_order))> 0) {
- echo " \n";
+ echo " \n";
}
$i=0;
while($i<=999) {
- if (strlen($i) == 1) { echo " \n"; }
- if (strlen($i) == 2) { echo " \n"; }
- if (strlen($i) == 3) { echo " \n"; }
+ if (strlen($i) == 1) { echo " \n"; }
+ if (strlen($i) == 2) { echo " \n"; }
+ if (strlen($i) == 3) { echo " \n"; }
$i++;
}
- echo " \n";
+ echo " \n";
echo " \n";
echo "".$text['description-order']."\n";
echo " | \n";
@@ -468,9 +468,8 @@
echo "\n";
echo "\n";
echo " \n";
- $selected = $conference_enabled == 'false' ? "selected='selected'" : null;
echo " \n";
- echo " \n";
+ echo " \n";
echo " \n";
echo " \n";
echo "".$text['description-conference-enable']."\n";
@@ -488,22 +487,18 @@
echo " | \n";
echo "\n";
- echo "\n";
- echo " \n";
- if ($action == "update") {
- echo " \n";
- echo " \n";
- }
- echo " \n";
- echo " ";
- echo " \n";
- echo " | \n";
- echo " ";
echo " ";
echo "
";
+
+ if ($action == "update") {
+ echo "\n";
+ echo "\n";
+ }
+ echo "\n";
+
echo "";
//include the footer
require_once "resources/footer.php";
-?>
+?>
\ No newline at end of file
diff --git a/app/conferences/conferences.php b/app/conferences/conferences.php
index 7e850cf00e..b64cd1bd71 100644
--- a/app/conferences/conferences.php
+++ b/app/conferences/conferences.php
@@ -185,7 +185,7 @@
echo th_order_by('conference_name', $text['table-name'], $order_by, $order);
echo th_order_by('conference_extension', $text['table-extension'], $order_by, $order);
echo th_order_by('conference_profile', $text['table-profile'], $order_by, $order);
- echo th_order_by('conference_order', $text['table-order'], $order_by, $order);
+ echo th_order_by('conference_order', $text['table-order'], $order_by, $order, null, "class='center'");
echo th_order_by('conference_enabled', $text['table-enabled'], $order_by, $order, null, "class='center'");
echo th_order_by('conference_description', $text['table-description'], $order_by, $order, null, "class='hide-sm-dn'");
if (permission_exists('conference_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
@@ -209,7 +209,7 @@
echo " ".str_replace('-', ' ', $row['conference_name'])." | \n";
echo " ".escape($row['conference_extension'])." | \n";
echo " ".escape($row['conference_profile'])." | \n";
- echo " ".escape($row['conference_order'])." | \n";
+ echo " ".escape($row['conference_order'])." | \n";
if (permission_exists('conference_edit')) {
echo " ";
echo button::create(['type'=>'submit','class'=>'link','label'=>$text['label-'.$row['conference_enabled']],'title'=>$text['button-toggle'],'onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('toggle'); list_form_submit('form_list')"]);
| |