Lines 428-434
foreach my $item (@items) {
Link Here
|
428 |
if ( $analyze ) { |
428 |
if ( $analyze ) { |
429 |
# count if item is used in analytical bibliorecords |
429 |
# count if item is used in analytical bibliorecords |
430 |
# The 'countanalytics' flag is only used in the templates if analyze is set |
430 |
# The 'countanalytics' flag is only used in the templates if analyze is set |
431 |
my $countanalytics = GetAnalyticsCount( $item->{itemnumber} ); |
431 |
my $countanalytics = GetAnalyticsCount( $item->itemnumber ); |
432 |
if ($countanalytics > 0){ |
432 |
if ($countanalytics > 0){ |
433 |
$analytics_flag=1; |
433 |
$analytics_flag=1; |
434 |
$item_info->{countanalytics} = $countanalytics; |
434 |
$item_info->{countanalytics} = $countanalytics; |
435 |
- |
|
|