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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 147-152 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
147
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
147
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
148
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
148
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
149
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
149
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
150
('IdRef','0','','Disable/enable the IdRef webservice from the OPAC detail page.','YesNo'),
150
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
151
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
151
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
152
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
152
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
153
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
(-)a/installer/data/mysql/updatedatabase.pl (+16 lines)
Lines 9656-9661 if(CheckVersion($DBversion)) { Link Here
9656
    SetVersion($DBversion);
9656
    SetVersion($DBversion);
9657
}
9657
}
9658
9658
9659
9660
9661
9662
$DBversion = "3.19.00.XXX";
9663
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
9664
    $dbh->do(q{
9665
        INSERT INTO systempreferences (variable,value,explanation,options,type)
9666
        VALUES('IdRef','0','Disable/enable the IdRef webservice from the OPAC detail page.',NULL,'YesNo')
9667
    });
9668
    print "Upgrade to $DBversion done (Bug 8992: Add system preference IdRef))\n";
9669
    SetVersion($DBversion);
9670
}
9671
9672
9673
9674
9659
=head1 FUNCTIONS
9675
=head1 FUNCTIONS
9660
9676
9661
=head2 TableExists($table)
9677
=head2 TableExists($table)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref (-1 / +7 lines)
Lines 45-47 Web services: Link Here
45
            - pref: SvcMaxReportRows
45
            - pref: SvcMaxReportRows
46
              class: integer
46
              class: integer
47
            - rows of a report requested via the reports web service.
47
            - rows of a report requested via the reports web service.
48
- 
48
    IdRef:
49
        -
50
            - pref: IdRef
51
              choices:
52
                yes: Enable
53
                no: Disable
54
            - the IdRef webservice from the opac detail page. IdRef allows to request authorities from the Sudoc database.

Return to bug 8992