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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-8 / +10 lines)
Lines 1-14 Link Here
1
[% SET footerjs = 1 %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; About Koha</title>
3
<title>Koha &rsaquo; About Koha</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
4
<script type="text/javascript">
5
//<![CDATA[
6
7
     $(document).ready(function() {
8
        $('#abouttabs').tabs();
9
     });
10
//]]>
11
</script>
12
</head>
5
</head>
13
<body id="about_about" class="about">
6
<body id="about_about" class="about">
14
[% INCLUDE 'header.inc' %]
7
[% INCLUDE 'header.inc' %]
Lines 896-899 Link Here
896
889
897
    </div>
890
    </div>
898
</div></div></div>
891
</div></div></div>
892
893
[% MACRO jsinclude BLOCK %]
894
    <script type="text/javascript">
895
         $(document).ready(function() {
896
            $('#abouttabs').tabs();
897
         });
898
    </script>
899
[% END %]
900
<!-- the main div is closed in intranet-bottom.inc -->
899
[% INCLUDE 'intranet-bottom.inc' %]
901
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-9 / +11 lines)
Lines 1-4 Link Here
1
[% USE Branches %]
1
[% USE Branches %]
2
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; 
4
<title>Koha &rsaquo; 
4
    [% IF ( nopermission ) %]Access denied[% END %]
5
    [% IF ( nopermission ) %]Access denied[% END %]
Lines 103-114 Link Here
103
</div>
104
</div>
104
</div>
105
</div>
105
106
106
<script>
107
[% MACRO jsinclude BLOCK %]
107
$(document).ready( function() {
108
    <script type="text/javascript">
108
    if ( document.location.hash ) {
109
        $(document).ready( function() {
109
        $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' );
110
            if ( document.location.hash ) {
110
    }
111
                $( '#loginform' ).append( '<input name="auth_forwarded_hash" type="hidden" value="' + document.location.hash + '"/>' );
111
} );
112
            }
112
</script>
113
        });
113
114
    </script>
115
[% END %]
116
<!-- the main div is closed in intranet-bottom.inc -->
114
[% INCLUDE 'intranet-bottom.inc' %]
117
[% INCLUDE 'intranet-bottom.inc' %]
115
- 

Return to bug 17859