2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

new "Operators" menu pages

new Feature: Password generator,

switch to bs-toggle from bs-switch
This commit is contained in:
Alex
2015-03-23 12:26:38 +03:00
parent 25b94fb428
commit 4e565a8bbf
7 changed files with 1550 additions and 1495 deletions

View File

@@ -223,7 +223,7 @@ function get_stats_total($rs)
$callsph = round($calls/($totaltime/3600),4);
}
$rs[] = array("effectiveness" => $effectiveness, "completions" => $completions,"time" => sec_to_time($totaltime),"totalcalls" => $calls,"callt" => sec_to_time($calltime),"CPH" => $cph,"CALLSPH" => $callsph);
$rs[] = array("effectiveness" => '<b>' . $effectiveness . '</b>', "completions" => '<b>' .$completions. '</b>',"time" => '<b>' . sec_to_time($totaltime). '</b>',"totalcalls" => '<b>' . $calls. '</b>',"callt" => '<b>' . sec_to_time($calltime). '</b>',"CPH" => '<b>' . $cph. '</b>',"CALLSPH" => '<b>' . $callsph. '</b>');
return $rs;
}