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

(-)a/installer/data/mysql/atomicupdate/bug_15504-add-tracklastpatronactivityoptions.pl (-2 / +2 lines)
Lines 14-20 return { Link Here
14
14
15
        my $triggers = $tracklastactivity ? 'check_out,connection,login' : '';
15
        my $triggers = $tracklastactivity ? 'check_out,connection,login' : '';
16
        $dbh->do(
16
        $dbh->do(
17
            qq{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('TrackLastPatronActivityTriggers',$triggers,NULL,'If set, the field borrowers.lastseen will be updated every time a patron is does a selected option','multiple') }
17
            qq{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('TrackLastPatronActivityTriggers',?,NULL,'If set, the field borrowers.lastseen will be updated every time a patron is does a selected option','multiple') },
18
            undef, $triggers,
18
        );
19
        );
19
20
20
        say $out "Added system preference 'TrackLastPatronActivityTriggers'";
21
        say $out "Added system preference 'TrackLastPatronActivityTriggers'";
21
- 

Return to bug 15504