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

(-)a/course_reserves/course-reserves.pl (-1 lines)
Lines 35-41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
35
        query           => $cgi,
35
        query           => $cgi,
36
        type            => "intranet",
36
        type            => "intranet",
37
        authnotrequired => 0,
37
        authnotrequired => 0,
38
        flagsrequired   => { coursereserves => '*' },
39
    }
38
    }
40
);
39
);
41
40
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (-2 lines)
Lines 22-30 Link Here
22
                            [% IF ( CAN_user_serials ) %]
22
                            [% IF ( CAN_user_serials ) %]
23
                            <li><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a></li>
23
                            <li><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a></li>
24
                            [% END %]
24
                            [% END %]
25
                            [% IF ( CAN_user_coursereserves ) %]
26
                            <li><a href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a></li>
25
                            <li><a href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a></li>
27
                            [% END %]
28
                            [% IF ( CAN_user_reports ) %]
26
                            [% IF ( CAN_user_reports ) %]
29
                            <li><a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a></li>
27
                            <li><a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a></li>
30
                            [% END %]
28
                            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt (-5 / +4 lines)
Lines 17-23 Link Here
17
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
17
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
18
            "iDisplayLength": 20,
18
            "iDisplayLength": 20,
19
            "aoColumnDefs": [
19
            "aoColumnDefs": [
20
                { 'bSortable': false, 'aTargets': [ 9, 10, 11 ] }
20
                { 'bSortable': false, 'aTargets': [ 'NoSort' ] }
21
            ]
21
            ]
22
        }));
22
        }));
23
23
Lines 82-90 Link Here
82
                        <th>Library</th>
82
                        <th>Library</th>
83
                        <th>Staff note</th>
83
                        <th>Staff note</th>
84
                        <th>Public note</th>
84
                        <th>Public note</th>
85
                        [% IF CAN_user_coursereserves_add_reserves %]<th>&nbsp;<!-- Edit --></th>[% END %]
85
                        [% IF CAN_user_coursereserves_add_reserves %]<th class="NoSort">&nbsp;<!-- Edit --></th>[% END %]
86
                        [% IF CAN_user_coursereserves_delete_reserves %]<th>&nbsp;<!-- Remove --></th>[% END %]
86
                        [% IF CAN_user_coursereserves_delete_reserves %]<th class="NoSort">&nbsp;<!-- Remove --></th>[% END %]
87
                        <th>Other course reserves</th>
87
                        <th class="NoSort">Other course reserves</th>
88
                    </tr>
88
                    </tr>
89
                </thead>
89
                </thead>
90
90
91
- 

Return to bug 11866