From 969aeabaf0ac43a0a64d61cb72b502daea5f04fc Mon Sep 17 00:00:00 2001
From: Mark Tompsett <mtompset@hotmail.com>
Date: Tue, 2 Jul 2019 05:05:20 +0000
Subject: [PATCH] Bug 23199: (follow-up) Fix tab/space issues

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
---
 Koha/Patron.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Koha/Patron.pm b/Koha/Patron.pm
index 8e5dfdb40b..69594e88a4 100644
--- a/Koha/Patron.pm
+++ b/Koha/Patron.pm
@@ -194,8 +194,8 @@ sub store {
             $self->trim_whitespaces;
 
             # Set surname to uppercase if uppercasesurname is true
-	    $self->surname( uc($self->surname) )
-		if C4::Context->preference("uppercasesurname");
+            $self->surname( uc($self->surname) )
+                if C4::Context->preference("uppercasesurname");
 
             unless ( $self->in_storage ) {    #AddMember
 
-- 
2.11.0