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

Ambrose Li acli at users.sourceforge.net
Sat Jan 25 21:05:49 CET 2003


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

Modified Files:
	boraccount.pl 
Log Message:
Handle non-latin1 charsets
Corrected wrong method to include page header and footer


Index: boraccount.pl
===================================================================
RCS file: /cvsroot/koha/koha/boraccount.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** boraccount.pl	13 Dec 2002 10:21:58 -0000	1.6
--- boraccount.pl	25 Jan 2003 20:05:47 -0000	1.7
***************
*** 27,30 ****
--- 27,31 ----
  use C4::Auth;
  use C4::Output;
+ use C4::Charset;
  use CGI;
  use C4::Search;
***************
*** 72,77 ****
  }
  
! $template->param( startmenumember => join('', startmenu('member')),
! 			 endmenumember   => join('', endmenu('member')),
  			firstname       => $data->{'firstname'},
  			surname         => $data->{'surname'},
--- 73,77 ----
  }
  
! $template->param(
  			firstname       => $data->{'firstname'},
  			surname         => $data->{'surname'},
***************
*** 80,82 ****
  			accounts        => \@accountrows );
  
! print $input->header(-cookie => $cookie),$template->output;
--- 80,85 ----
  			accounts        => \@accountrows );
  
! print $input->header(
!    -type => guesstype($template->output),
!    -cookie => $cookie
! ),$template->output;





More information about the Koha-cvs mailing list