FIFO: Database class integration.

This commit is contained in:
Nate
2019-08-08 20:10:27 -06:00
parent ba26ef42f5
commit 8a0f849fe1
3 changed files with 33 additions and 35 deletions

View File

@@ -233,7 +233,7 @@
echo "<td valign='top' class='".$row_style[$c]."'>".escape($fifo_total_inbound_calls)." &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".escape($fifo_duration_formatted)." &nbsp;</td>\n";
echo "</tr>\n";
if ($c==0) { $c=1; } else { $c=0; }
$c = $c ? 0 : 1;
}
echo "</table>\n";
}

View File

@@ -127,7 +127,7 @@
}
}
if ($c==0) { $c=1; } else { $c=0; }
$c = $c ? 0 : 1;
}
echo "</table>\n";
}