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 -1
View File
@@ -876,7 +876,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
//set the defaults //set the defaults
if (strlen($limit_max) == 0) { $limit_max = '5'; } if (strlen($limit_max) == 0) { $limit_max = '5'; }
if (strlen($call_timeout) == 0) { $call_timeout = '30'; } 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 //begin the page content
require_once "resources/header.php"; require_once "resources/header.php";