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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +3 lines)
Lines 248-254 Link Here
248
    <script>
248
    <script>
249
        $(document).ready( function() {
249
        $(document).ready( function() {
250
            if ( document.location.hash ) {
250
            if ( document.location.hash ) {
251
                $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' );
251
                const input = $('<input name="auth_forwarded_hash" type="hidden">')
252
                input.val(document.location.hash);
253
                $( '#loginform' ).append( input );
252
            }
254
            }
253
            // Clear last borrowers, rememberd sql reports, carts, etc.
255
            // Clear last borrowers, rememberd sql reports, carts, etc.
254
            logOut();
256
            logOut();
255
- 

Return to bug 35960