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

(-)a/catalogue/export.pl (-8 / +7 lines)
Lines 12-24 use CGI; Link Here
12
12
13
my $query = new CGI;
13
my $query = new CGI;
14
my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
14
my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
15
                                                                     template_name   => "tools/export.tt",
15
    template_name   => "tools/export.tt",
16
                                                                     query           => $query,
16
    query           => $query,
17
                                                                     type            => "intranet",
17
    type            => "intranet",
18
                                                                     authnotrequired => 0,
18
    authnotrequired => 0,
19
                                                                     flagsrequired   => { tools => 'export_catalog' },
19
    flagsrequired   => { catalogue => 1 },
20
                                                                     debug           => 1,
20
    debug           => 1,
21
                                                                     });
21
    });
22
22
23
my $op=$query->param("op");
23
my $op=$query->param("op");
24
my $format=$query->param("format");
24
my $format=$query->param("format");
25
- 

Return to bug 9663