Kumara - predecessor to Koha
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

18 lines
297 B

#!/usr/bin/perl
#script to guide user thru adding a new biblio entry
#written 8/11/99
use strict;
#use C4::Search;
use CGI;
use C4::Output;
my $input = new CGI;
print $input->header;
print startpage();
print startmenu();
print mktablehdr();
print mktableft();
print endmenu();
print endpage();