[Koha-cvs] CVS: koha/admin itemtypes.pl,1.9,1.10

Mike Hansen wolfpac444 at users.sourceforge.net
Fri Jul 18 15:34:17 CEST 2003


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

Modified Files:
	itemtypes.pl 
Log Message:
Fixed Bug #542


Index: itemtypes.pl
===================================================================
RCS file: /cvsroot/koha/koha/admin/itemtypes.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** itemtypes.pl	4 Jul 2003 13:22:27 -0000	1.9
--- itemtypes.pl	18 Jul 2003 13:34:14 -0000	1.10
***************
*** 195,203 ****
  	if ($offset>0) {
  		my $prevpage = $offset-$pagesize;
! 		$template->param(previous => "<a href=\"$script_name?offset=".$prevpage.'">');
  	}
  	if ($offset+$pagesize<$count) {
  		my $nextpage =$offset+$pagesize;
! 		$template->param(next => "<a href=\"$script_name?offset=".$nextpage.'">');
  	}
  } #---- END $OP eq DEFAULT
--- 195,203 ----
  	if ($offset>0) {
  		my $prevpage = $offset-$pagesize;
! 		$template->param(previous => "$script_name?offset=".$prevpage);
  	}
  	if ($offset+$pagesize<$count) {
  		my $nextpage =$offset+$pagesize;
! 		$template->param(next => "$script_name?offset=".$nextpage);
  	}
  } #---- END $OP eq DEFAULT





More information about the Koha-cvs mailing list