View | Details | Raw Unified | Return to bug 18215
Collapse All | Expand All

(-)a/Koha/Database.pm (-2 / +1 lines)
Lines 60-66 sub _new_schema { Link Here
60
    my $db_passwd = $context->config("pass");
60
    my $db_passwd = $context->config("pass");
61
    my $tls = $context->config("tls");
61
    my $tls = $context->config("tls");
62
    my $tls_options;
62
    my $tls_options;
63
    if ($tls eq 'yes'){
63
    if( $tls && $tls eq 'yes' ) {
64
        my $ca = $context->config('ca');
64
        my $ca = $context->config('ca');
65
        my $cert = $context->config('cert');
65
        my $cert = $context->config('cert');
66
        my $key = $context->config('key');
66
        my $key = $context->config('key');
67
- 

Return to bug 18215