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

(-)a/C4/Installer/PerlDependencies.pm (+5 lines)
Lines 762-767 our $PERL_DEPS = { Link Here
762
        'required' => '1',
762
        'required' => '1',
763
        'min_ver'  => '0.05',
763
        'min_ver'  => '0.05',
764
    },
764
    },
765
    'URL::Encode' => {
766
        'usage'    => 'PayPal',
767
        'required' => '0',
768
        'min_ver'  => '0.03',
769
    },
765
};
770
};
766
771
767
1;
772
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