[Koha-cvs] CVS: koha/admin aqbookfund.pl,1.10,1.11 aqbudget.pl,1.9,1.10 authorised_values.pl,1.4,1.5

Ambrose Li acli at users.sourceforge.net
Sun Feb 2 05:58:11 CET 2003


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

Modified Files:
	aqbookfund.pl aqbudget.pl authorised_values.pl 
Log Message:
Handle non-latin1 charsets


Index: aqbookfund.pl
===================================================================
RCS file: /cvsroot/koha/koha/admin/aqbookfund.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** aqbookfund.pl	28 Jan 2003 13:04:08 -0000	1.10
--- aqbookfund.pl	2 Feb 2003 04:58:08 -0000	1.11
***************
*** 43,46 ****
--- 43,47 ----
  use C4::Context;
  use C4::Output;
+ use C4::Charset;
  use C4::Search;
  use HTML::Template;
***************
*** 206,208 ****
  } #---- END $OP eq DEFAULT
  
! print $input->header(-cookie => $cookie), $template->output;
--- 207,212 ----
  } #---- END $OP eq DEFAULT
  
! print $input->header(
!     -type => guesstype($template->output),
!     -cookie => $cookie
! ), $template->output;

Index: aqbudget.pl
===================================================================
RCS file: /cvsroot/koha/koha/admin/aqbudget.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** aqbudget.pl	28 Jan 2003 13:04:09 -0000	1.9
--- aqbudget.pl	2 Feb 2003 04:58:08 -0000	1.10
***************
*** 43,46 ****
--- 43,47 ----
  use C4::Context;
  use C4::Output;
+ use C4::Charset;
  use C4::Search;
  use HTML::Template;
***************
*** 227,230 ****
  } #---- END $OP eq DEFAULT
  
! print $input->header(-cookie => $cookie), $template->output;
  
--- 228,234 ----
  } #---- END $OP eq DEFAULT
  
! print $input->header(
!     -type => guesstype($template->output),
!     -cookie => $cookie
! ), $template->output;
  

Index: authorised_values.pl
===================================================================
RCS file: /cvsroot/koha/koha/admin/authorised_values.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** authorised_values.pl	10 Dec 2002 17:35:52 -0000	1.4
--- authorised_values.pl	2 Feb 2003 04:58:08 -0000	1.5
***************
*** 23,26 ****
--- 23,27 ----
  use C4::Context;
  use C4::Output;
+ use C4::Charset;
  use C4::Search;
  use HTML::Template;
***************
*** 189,191 ****
  } #---- END $OP eq DEFAULT
  
! print $input->header(-cookie => $cookie), $template->output;
--- 190,195 ----
  } #---- END $OP eq DEFAULT
  
! print $input->header(
!     -type => guesstype($template->output),
!     -cookie => $cookie
! ), $template->output;





More information about the Koha-cvs mailing list