diff options
Diffstat (limited to 'LedgerSMB/Session')
-rwxr-xr-x | LedgerSMB/Session/DB.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LedgerSMB/Session/DB.pm b/LedgerSMB/Session/DB.pm index 0c8dda45..7b59a718 100755 --- a/LedgerSMB/Session/DB.pm +++ b/LedgerSMB/Session/DB.pm @@ -52,7 +52,8 @@ sub session_check { $timeout = "$myconfig{timeout} seconds"; } - $checkQuery->execute($sessionid, $token, $timeout) || $form->dberror('Looking for session: '); + $checkQuery->execute($sessionid, $token, $timeout) + || $form->dberror('Looking for session: '); my $sessionValid = $checkQuery->rows; if($sessionValid){ |