summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_usermanager_settings.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-04-27 14:07:48 +0000
committerErmal <eri@pfsense.org>2010-04-27 14:07:48 +0000
commit02647583e94b630d6962095347ec219a57d5d48b (patch)
tree88de3731a5af19352a3e0a5a735f67303d30b3f8 /usr/local/www/system_usermanager_settings.php
parenta1cab2c7ebe77e83cb091712c18ae8267bdfe1e4 (diff)
downloadpfsense-02647583e94b630d6962095347ec219a57d5d48b.zip
pfsense-02647583e94b630d6962095347ec219a57d5d48b.tar.gz
Ticket #378. Correctly handle a timeout of 0 to mean never timeout.
Diffstat (limited to 'usr/local/www/system_usermanager_settings.php')
-rwxr-xr-xusr/local/www/system_usermanager_settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/system_usermanager_settings.php b/usr/local/www/system_usermanager_settings.php
index b2c8209..63cec0f 100755
--- a/usr/local/www/system_usermanager_settings.php
+++ b/usr/local/www/system_usermanager_settings.php
@@ -57,7 +57,7 @@ if ($_POST) {
unset($input_errors);
$pconfig = $_POST;
- if($_POST['session_timeout']) {
+ if(isset($_POST['session_timeout'])) {
$timeout = intval($_POST['session_timeout']);
if ($timeout != "" && (!is_numeric($timeout) || $timeout <= 0))
$input_errors[] = gettext("Session timeout must be an integer value.");
@@ -65,7 +65,7 @@ if ($_POST) {
if (!$input_errors) {
- if($_POST['session_timeout'])
+ if(isset($_POST['session_timeout']))
$config['system']['webgui']['session_timeout'] = intval($_POST['session_timeout']);
else
unset($config['system']['webgui']['session_timeout']);
OpenPOWER on IntegriCloud