[Koha-cvs] CVS: koha overdue.pl,1.6,1.7

Chris Cormack rangi at users.sourceforge.net
Thu Jul 3 23:52:11 CEST 2003


Update of /cvsroot/koha/koha
In directory sc8-pr-cvs1:/tmp/cvs-serv7138

Modified Files:
	overdue.pl 
Log Message:
Fixing missing use C4::Auth call
Now to fix the template


Index: overdue.pl
===================================================================
RCS file: /cvsroot/koha/koha/overdue.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** overdue.pl	11 Jun 2003 20:11:44 -0000	1.6
--- overdue.pl	3 Jul 2003 21:52:08 -0000	1.7
***************
*** 25,28 ****
--- 25,29 ----
  use CGI;
  use HTML::Template;
+ use C4::Auth;
  
  my $input = new CGI;
***************
*** 30,41 ****
  
  my $theme = $input->param('theme'); # only used if allowthemeoverride is set
  my ($template, $loggedinuser, $cookie)
! 	= get_template_and_user({template_name => "overdue.tmpl",
! 		     query => $query,
! 		     type => "intranet",
! 		     authnotrequired => 0,
! 		     flagsrequired => {catalogue => 1},
! 		     debug => 1,
! 		     });
  my $duedate;
  my $bornum;
--- 31,43 ----
  
  my $theme = $input->param('theme'); # only used if allowthemeoverride is set
+ 
  my ($template, $loggedinuser, $cookie)
!       = get_template_and_user({template_name => "overdue.tmpl",
! 	                                 query => $input,
! 	                                 type => "intranet",
! 	                                 authnotrequired => 0,
! 	                                 flagsrequired => {borrowers => 1},
! 	                                 debug => 1,
! 	                                 });
  my $duedate;
  my $bornum;





More information about the Koha-cvs mailing list