koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Chris Cormack
Subject: [Koha-cvs] CVS: koha overdue.pl,1.6,1.7
Date: Thu, 03 Jul 2003 14:52:11 -0700

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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]