From 754c44183f908647b8fa66b56aa4715709ee71e5 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 Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit a36c7435f23b7d69e8286370774fbb8554e7f98f) 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 e7a6ab1640..975cd7c7cc 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -686,7 +686,7 @@ sub _timeout_syspref { # value in days, convert in seconds if ( $timeout =~ /(\d+)[dD]/ ) { $timeout = $1 * 86400; - }; + } return $timeout; } -- 2.39.5