diff --git a/core/domains/domains.php b/core/domains/domains.php
index 1f1ca5a62f..742cc3bbc5 100644
--- a/core/domains/domains.php
+++ b/core/domains/domains.php
@@ -233,6 +233,7 @@
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order);
}
echo th_order_by('domain_name', $text['label-domain_name'], $order_by, $order);
+ echo "
".$text['label-tools']." | ";
echo th_order_by('domain_enabled', $text['label-domain_enabled'], $order_by, $order, null, "class='center'");
echo " ".$text['label-domain_description']." | \n";
if (permission_exists('domain_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
@@ -264,15 +265,19 @@
echo " ".escape($row['domain_name']);
}
echo " \n";
+ echo " \n";
+ echo " ".$text['label-manage']."";
+ echo " | \n";
if (permission_exists('domain_edit')) {
echo " \n";
echo button::create(['type'=>'submit','class'=>'link','label'=>$text['label-'.$row['domain_enabled']],'title'=>$text['button-toggle'],'onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('toggle'); list_form_submit('form_list')"]);
+ echo " | \n";
}
else {
echo " \n";
echo $text['label-'.$row['domain_enabled']];
+ echo " | \n";
}
- echo " \n";
echo " ".escape($row['domain_description'])." | \n";
if (permission_exists('domain_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
echo " \n";
|