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

(-)a/acqui/newordersuggestion.pl (-1 lines)
Lines 119-125 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
119
        template_name   => "acqui/newordersuggestion.tmpl",
119
        template_name   => "acqui/newordersuggestion.tmpl",
120
        type            => "intranet",
120
        type            => "intranet",
121
        query           => $input,
121
        query           => $input,
122
        authnotrequired => 1,
123
        flagsrequired   => { acquisition => 'order_manage' },
122
        flagsrequired   => { acquisition => 'order_manage' },
124
    }
123
    }
125
);
124
);
(-)a/acqui/transferorder.pl (-2 lines)
Lines 36-44 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
36
    {   template_name   => "acqui/transferorder.tmpl",
36
    {   template_name   => "acqui/transferorder.tmpl",
37
        query           => $input,
37
        query           => $input,
38
        type            => "intranet",
38
        type            => "intranet",
39
        authnotrequired => 1,
40
        flagsrequired   => { acquisition => 'order_manage' },
39
        flagsrequired   => { acquisition => 'order_manage' },
41
        debug           => 1,
42
    }
40
    }
43
);
41
);
44
42
(-)a/acqui/z3950_search.pl (-1 lines)
Lines 70-76 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
70
        template_name   => "acqui/z3950_search.tmpl",
70
        template_name   => "acqui/z3950_search.tmpl",
71
        query           => $input,
71
        query           => $input,
72
        type            => "intranet",
72
        type            => "intranet",
73
        authnotrequired => 1,
74
        flagsrequired   => { acquisition => 'order_manage' },
73
        flagsrequired   => { acquisition => 'order_manage' },
75
    }
74
    }
76
);
75
);
(-)a/catalogue/cardview.pl (-1 lines)
Lines 31-37 my ($template, $borrowernumber, $cookie) Link Here
31
    = get_template_and_user({template_name => "opac-detail.tmpl",
31
    = get_template_and_user({template_name => "opac-detail.tmpl",
32
			     query => $query,
32
			     query => $query,
33
			     type => "opac",
33
			     type => "opac",
34
			     authnotrequired => 1,
35
			     flagsrequired => {borrow => 1},
34
			     flagsrequired => {borrow => 1},
36
			     });
35
			     });
37
36
(-)a/reports/stats.screen.pl (-2 lines)
Lines 39-47 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
39
        template_name   => "reports/stats_screen.tmpl",
39
        template_name   => "reports/stats_screen.tmpl",
40
        query           => $input,
40
        query           => $input,
41
        type            => "intranet",
41
        type            => "intranet",
42
        authnotrequired => 1,
43
        flagsrequired   => { reports => '*' },
42
        flagsrequired   => { reports => '*' },
44
        debug           => 1,
45
    }
43
    }
46
);
44
);
47
45
(-)a/serials/serial-issues.pl (-4 / +1 lines)
Lines 70-78 if ($selectview eq "full"){ Link Here
70
     = get_template_and_user({template_name => "serials/serial-issues-full.tmpl",
70
     = get_template_and_user({template_name => "serials/serial-issues-full.tmpl",
71
     query => $query,
71
     query => $query,
72
     type => "intranet",
72
     type => "intranet",
73
     authnotrequired => 0,
74
	 flagsrequired => {serials => '*'},
73
	 flagsrequired => {serials => '*'},
75
     debug => 1,
76
     });
74
     });
77
75
78
 # replace CR by <br> in librarian note
76
 # replace CR by <br> in librarian note
Lines 94-101 if ($selectview eq "full"){ Link Here
94
    = get_template_and_user({template_name => "serials/serial-issues.tmpl",
92
    = get_template_and_user({template_name => "serials/serial-issues.tmpl",
95
        query => $query,
93
        query => $query,
96
        type => "intranet",
94
        type => "intranet",
97
        authnotrequired => 1,
95
	    flagsrequired => {serials => '*'},
98
        debug => 1,
99
     });
96
     });
100
97
101
 # replace CR by <br> in librarian note
98
 # replace CR by <br> in librarian note
(-)a/services/itemrecorddisplay.pl (-2 / +1 lines)
Lines 40-46 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( { Link Here
40
    template_name   => 'services/itemrecorddisplay.tmpl',
40
    template_name   => 'services/itemrecorddisplay.tmpl',
41
    query           => $input,
41
    query           => $input,
42
    type            => 'intranet',
42
    type            => 'intranet',
43
    authnotrequired => 1,
43
    flagsrequired   => {acquisition => '*'},
44
} );
44
} );
45
45
46
my $biblionumber = $input->param('biblionumber') || '';
46
my $biblionumber = $input->param('biblionumber') || '';
47
- 

Return to bug 11715