|
Lines 1876-1883
sub searchResults {
Link Here
|
| 1876 |
my $interface = $search_context eq 'opac' ? 'OPAC' : ''; |
1876 |
my $interface = $search_context eq 'opac' ? 'OPAC' : ''; |
| 1877 |
my $xslsyspref = $interface . "XSLTResultsDisplay"; |
1877 |
my $xslsyspref = $interface . "XSLTResultsDisplay"; |
| 1878 |
my $xslfile = C4::Context->preference($xslsyspref); |
1878 |
my $xslfile = C4::Context->preference($xslsyspref); |
| 1879 |
my $lang = C4::Languages::getlanguage(); |
1879 |
my $lang = $xslfile ? C4::Languages::getlanguage() : undef; |
| 1880 |
my $sysxml = C4::XSLT::get_xslt_sysprefs(); |
1880 |
my $sysxml = $xslfile ? C4::XSLT::get_xslt_sysprefs() : undef; |
| 1881 |
|
1881 |
|
| 1882 |
# loop through all of the records we've retrieved |
1882 |
# loop through all of the records we've retrieved |
| 1883 |
for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) { |
1883 |
for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) { |
| 1884 |
- |
|
|