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 247-253 Link Here
247
    <script>
247
    <script>
248
        $(document).ready( function() {
248
        $(document).ready( function() {
249
            if ( document.location.hash ) {
249
            if ( document.location.hash ) {
250
                $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' );
250
                const input = $('<input name="auth_forwarded_hash" type="hidden">')
251
                input.val(document.location.hash);
252
                $( '#loginform' ).append( input );
251
            }
253
            }
252
            // Clear last borrowers, rememberd sql reports, carts, etc.
254
            // Clear last borrowers, rememberd sql reports, carts, etc.
253
            logOut();
255
            logOut();
254
- 

Return to bug 35960