Fix the the syntax so the default will work correctly.

This commit is contained in:
Mark Crane 2015-06-23 21:13:22 +00:00
parent 553d3a9c49
commit 34f6a889b9
1 changed files with 2 additions and 2 deletions

View File

@ -876,7 +876,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
//set the defaults
if (strlen($limit_max) == 0) { $limit_max = '5'; }
if (strlen($call_timeout) == 0) { $call_timeout = '30'; }
if (strlen($call_screen_enabled == 0)) { $call_screen_enabled = 'false'; }
if (strlen($call_screen_enabled) == 0) { $call_screen_enabled = 'false'; }
//begin the page content
require_once "resources/header.php";
@ -1956,4 +1956,4 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
//include the footer
require_once "resources/footer.php";
?>
?>