From 98e239e50bd406ded0e37c471055dc3fdece55d1 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 6 Jan 2015 06:48:29 +0000 Subject: [PATCH] Bug 13521: Removed superflous semicolon Removed an uneeded semicolon from the end of an 'if' block. This should not affect operation of the script. Note: With Bug 13499 we did a non-destructive perltidy, as such we only affected indenting and whitespace to maintain blame history. However, a number of minor code issues were also highlighted, in this series of patches I hope to correct other minor style issues. Signed-off-by: Chris Cormack --- C4/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index d055d0c..2b64364 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -687,7 +687,7 @@ sub _timeout_syspref { # value in days, convert in seconds if ( $timeout =~ /(\d+)[dD]/ ) { $timeout = $1 * 86400; - }; + } return $timeout; } -- 2.1.0