Bug 2505: Added warnings to members/members-home.pl and members/setstatus.pl
[koha.git] / members / members-home.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19 use warnings;
20
21 use CGI;
22 use C4::Auth;
23 use C4::Output;
24 use C4::Context;
25 use C4::Members;
26
27 my $query = new CGI;
28 my $quicksearch = $query->param('quicksearch');
29 my ($template, $loggedinuser, $cookie);
30 my $template_name;
31
32 if($quicksearch){
33 ($template, $loggedinuser, $cookie)
34     = get_template_and_user({template_name => "members/member-quicksearch.tmpl",
35                  query => $query,
36                  type => "intranet",
37                  authnotrequired => 0,
38                  flagsrequired => {borrowers => 1},
39                  debug => 1,
40                  });
41 } else {
42 ($template, $loggedinuser, $cookie)
43     = get_template_and_user({template_name => "members/member.tmpl",
44                  query => $query,
45                  type => "intranet",
46                  authnotrequired => 0,
47                  flagsrequired => {borrowers => 1},
48                  debug => 1,
49                  });
50 }
51 $template->param( 
52         "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
53             );
54 if (C4::Context->preference("AddPatronLists")=~/code/){
55     my $categories=GetBorrowercategoryList;
56     $categories->[0]->{'first'}=1;
57     $template->param(categories=>$categories);  
58 }  
59
60 output_html_with_http_headers $query, $cookie, $template->output;