From 83b0edceacbf8d241f95ccb2726f0a68f90f3d2d Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Tue, 6 Jan 2015 06:54:00 +0000
Subject: [PATCH] Bug 13521: Add missing semicolon

Add a missing semicolon to the end of a template variable assignment
line. This patch should not affect operation.

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 <chris@bigballofwax.co.nz>
---
 C4/Auth.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/C4/Auth.pm b/C4/Auth.pm
index 2b64364..f1481c3 100644
--- a/C4/Auth.pm
+++ b/C4/Auth.pm
@@ -351,7 +351,7 @@ sub get_template_and_user {
     }
 
     if ( C4::Context->preference('dateformat') ) {
-        $template->param( dateformat => C4::Context->preference('dateformat') )
+        $template->param( dateformat => C4::Context->preference('dateformat') );
     }
 
     # these template parameters are set the same regardless of $in->{'type'}
-- 
2.1.0