From 7494f32dcfc6204d6c56ecf5862b77a829a879c6 Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Mon, 6 Mar 2017 10:39:18 +0100
Subject: [PATCH] Bug 18215: Resolve warning on $tls in Database.pm
Content-Type: text/plain; charset=utf-8

Resolve this warning:
updatedatabase.pl: Use of uninitialized value $tls in string eq at /usr/share/koha/masterclone/Koha/Database.pm line 63.

Test plan:
[1] Check if you do not see the warning anymore.
---
 Koha/Database.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Koha/Database.pm b/Koha/Database.pm
index c5b2b73..df259c5 100644
--- a/Koha/Database.pm
+++ b/Koha/Database.pm
@@ -60,7 +60,7 @@ sub _new_schema {
     my $db_passwd = $context->config("pass");
     my $tls = $context->config("tls");
     my $tls_options;
-    if ($tls eq 'yes'){
+    if( $tls && $tls eq 'yes' ) {
         my $ca = $context->config('ca');
         my $cert = $context->config('cert');
         my $key = $context->config('key');
-- 
2.1.4