From 61dbb6ffa2af02e70dede00472759d111b8fcd9c Mon Sep 17 00:00:00 2001
From: Magnus Enger <magnus@libriotech.no>
Date: Wed, 17 Jun 2015 14:36:44 +0200
Subject: [PATCH] Bug 14403 - Remove warn in Koha::NorwegianPatronDB
Line 99 has an unconditional warn, left over from development:
warn "$combined_username => $combined_password";
This patch deletes the line i question.
To test:
No testing needed, just have a look at the diff and see that
it makes sense to delete the warn.
---
Koha/NorwegianPatronDB.pm | 1 -
1 file changed, 1 deletion(-)
diff --git a/Koha/NorwegianPatronDB.pm b/Koha/NorwegianPatronDB.pm
index 03afc21..585dfd2 100644
--- a/Koha/NorwegianPatronDB.pm
+++ b/Koha/NorwegianPatronDB.pm
@@ -96,7 +96,6 @@ sub SOAP::Transport::HTTP::Client::get_basic_credentials {
# Combine usernames and passwords, and encrypt with SHA256
my $combined_username = "$vendor_username-$library_username";
my $combined_password = sha256_hex( "$library_password-$vendor_password" );
- warn "$combined_username => $combined_password";
return $combined_username => $combined_password;
}
--
1.9.1