View | Details | Raw Unified | Return to bug 8917
Collapse All | Expand All

(-)a/Koha/Linktracker.pm (-2 lines)
Lines 27-34 Koha::Linktracker Link Here
27
  my $tracker = Koha::Linktracker->new();
27
  my $tracker = Koha::Linktracker->new();
28
  $tracker->trackclick( $linkinfo );
28
  $tracker->trackclick( $linkinfo );
29
29
30
=head1 DESCRIPTION
31
32
=head1 FUNCTIONS
30
=head1 FUNCTIONS
33
31
34
=cut
32
=cut
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 6458-6464 if ( CheckVersion($DBversion) ) { Link Here
6458
  INSERT INTO systempreferences (variable,value,explanation,options,type)
6458
  INSERT INTO systempreferences (variable,value,explanation,options,type)
6459
  VALUES('TrackClicks','0','Track links clicked',NULL,'Integer')" );
6459
  VALUES('TrackClicks','0','Track links clicked',NULL,'Integer')" );
6460
    print
6460
    print
6461
"Upgrade to $DBversion done (Adds feature Bug 8917, the ability to track links clicked)";
6461
"Upgrade to $DBversion done (Adds feature Bug 8917, the ability to track links clicked)\n";
6462
    SetVersion($DBversion);
6462
    SetVersion($DBversion);
6463
}
6463
}
6464
6464
6465
- 

Return to bug 8917