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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (+5 lines)
Lines 160-165 Link Here
160
                        </div>
160
                        </div>
161
                    [% END %]
161
                    [% END %]
162
162
163
                    [% IF ( issued ) %]
164
                    <span class="sco-alert-success"></span>
165
                    <p>Item checked out</p>
166
                    [% END %]
167
163
168
164
                    [% UNLESS ( hide_main ) %]
169
                    [% UNLESS ( hide_main ) %]
165
170
(-)a/opac/sco/sco-main.pl (-1 / +1 lines)
Lines 201-206 elsif ( $op eq "checkout" ) { Link Here
201
        if ( $confirmed || $issuenoconfirm ) {    # we'll want to call getpatroninfo again to get updated issues.
201
        if ( $confirmed || $issuenoconfirm ) {    # we'll want to call getpatroninfo again to get updated issues.
202
            # warn "issuing book?";
202
            # warn "issuing book?";
203
            AddIssue( $borrower, $barcode );
203
            AddIssue( $borrower, $barcode );
204
            $template->param( issued => 1 );
204
            # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
205
            # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
205
            # $template->param(
206
            # $template->param(
206
            #   patronid => $patronid,
207
            #   patronid => $patronid,
207
- 

Return to bug 18251