[Koha-cvs] CVS: koha moremember.pl,1.22,1.23

Ambrose Li acli at users.sourceforge.net
Sat Jan 25 20:49:59 CET 2003


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

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


Index: moremember.pl
===================================================================
RCS file: /cvsroot/koha/koha/moremember.pl,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** moremember.pl	13 Dec 2002 10:21:59 -0000	1.22
--- moremember.pl	25 Jan 2003 19:49:57 -0000	1.23
***************
*** 35,38 ****
--- 35,39 ----
  use C4::Context;
  use C4::Output;
+ use C4::Charset;
  use CGI;
  use C4::Search;
***************
*** 197,202 ****
  
  $template->param($data);
! $template->param(startmenumember => join('', startmenu('member')),
! 		 endmenumember   => join('', endmenu('member')),
  		 bornum          => $bornum,
  		 accountloop     => \@accountdata,
--- 198,202 ----
  
  $template->param($data);
! $template->param(
  		 bornum          => $bornum,
  		 accountloop     => \@accountdata,
***************
*** 204,206 ****
  		 reserveloop     => \@reservedata);
  
! print $input->header(-cookie => $cookie),$template->output;
--- 204,209 ----
  		 reserveloop     => \@reservedata);
  
! print $input->header(
!     -type => guesstype($template->output),
!     -cookie => $cookie
! ),$template->output;





More information about the Koha-cvs mailing list