diff options
author | plumbeo <plumbeo@users.noreply.github.com> | 2017-08-23 13:03:28 +0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-08-23 15:37:26 -0300 |
commit | 701e028a359475787adf24726da6d48db4cabfa7 (patch) | |
tree | dfb5d290ecde12cb04014e0cd7927718df016761 | |
parent | f9ba59d4f46d84f3bdd87554d8b551da20bc477f (diff) | |
download | pfsense-701e028a359475787adf24726da6d48db4cabfa7.zip pfsense-701e028a359475787adf24726da6d48db4cabfa7.tar.gz |
Captive portal: fix idle times in details popup
Explicitly cast $idle_time to integer.
(cherry picked from commit 07df3494bd9a508e568b4ae999369ec8b2d14ec2)
-rw-r--r-- | src/usr/local/www/status_captiveportal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/status_captiveportal.php b/src/usr/local/www/status_captiveportal.php index f0d3b8d..fb02b2b 100644 --- a/src/usr/local/www/status_captiveportal.php +++ b/src/usr/local/www/status_captiveportal.php @@ -97,11 +97,11 @@ function print_details($cpent) { $last_act = $last_act ? $last_act : $cpent[0]; $idle_time = time() - $last_act; - printf(gettext("Idle time: %s") . "<br>", convert_seconds_to_dhms($idle_time)); + printf(gettext("Idle time: %s") . "<br>", convert_seconds_to_dhms((int)$idle_time)); if (!empty($cpent[8])) { $idle_time_left = $last_act + $cpent[8] - time(); - printf(gettext("Idle time left: %s") . "<br>", convert_seconds_to_dhms($idle_time_left)); + printf(gettext("Idle time left: %s") . "<br>", convert_seconds_to_dhms((int)$idle_time_left)); } } |