Update template.php (#4781)

This commit is contained in:
chansizzle 2019-10-18 12:43:11 -06:00 committed by FusionPBX
parent 5247755cc1
commit afcacd8a0f
1 changed files with 2 additions and 2 deletions

View File

@ -424,13 +424,13 @@ echo " <div id='message_container'></div>\n";
echo " <div id='domains_list'>\n";
//alternating background colors of inactive domains
if ($_SESSION['theme']['domain_inactive_background_color'][0]['text'] != '') {
if ($_SESSION['theme']['domain_inactive_background_color'][0] != '') {
$bgcolor1 = $_SESSION['theme']['domain_inactive_background_color'][0];
}
else {
$bgcolor1 = "#eaedf2";
}
if ($_SESSION['theme']['domain_inactive_background_color'][1]['text'] != '') {
if ($_SESSION['theme']['domain_inactive_background_color'][1] != '') {
$bgcolor2 = $_SESSION['theme']['domain_inactive_background_color'][1];
}
else {