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

(-)a/C4/Installer/PerlDependencies.pm (+5 lines)
Lines 767-772 our $PERL_DEPS = { Link Here
767
        'required' => '0',
767
        'required' => '0',
768
        'min_ver'  => '0.614',
768
        'min_ver'  => '0.614',
769
    },
769
    },
770
    'URL::Encode' => {
771
        'usage'    => 'PayPal',
772
        'required' => '0',
773
        'min_ver'  => '0.03',
774
    },
770
};
775
};
771
776
772
1;
777
1;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account-pay-return.tt (-1 / +1 lines)
Lines 34-40 Link Here
34
                                <p>Please contact the library to verify your payment.</p>
34
                                <p>Please contact the library to verify your payment.</p>
35
                            [% END %]
35
                            [% END %]
36
                        </div>
36
                        </div>
37
                    [% ELSIF credit %]
37
                    [% ELSIF amount %]
38
                        <div class="dialog message">
38
                        <div class="dialog message">
39
                            <p><strong>Payment applied:</strong> your payment of [% amount %] has been applied to your account</p>
39
                            <p><strong>Payment applied:</strong> your payment of [% amount %] has been applied to your account</p>
40
                        </div>
40
                        </div>
(-)a/opac/opac-account-pay-paypal-return.pl (-1 lines)
Lines 45-51 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
45
        query           => $cgi,
45
        query           => $cgi,
46
        type            => "opac",
46
        type            => "opac",
47
        authnotrequired => 0,
47
        authnotrequired => 0,
48
        flagsrequired   => { borrow => 1 },
49
        debug           => 1,
48
        debug           => 1,
50
    }
49
    }
51
);
50
);
(-)a/opac/opac-account-pay.pl (-2 lines)
Lines 45-51 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
45
        query           => $cgi,
45
        query           => $cgi,
46
        type            => "opac",
46
        type            => "opac",
47
        authnotrequired => 0,
47
        authnotrequired => 0,
48
        flagsrequired   => { borrow => 1 },
49
        debug           => 1,
48
        debug           => 1,
50
    }
49
    }
51
);
50
);
52
- 

Return to bug 11622