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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 139-144 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
139
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
139
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
140
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
140
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
141
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
141
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
142
('IdRef','0','','Disable/enable the IdRef webservice from the OPAC detail page.','YesNo'),
142
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
143
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
143
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
144
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
144
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
145
('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 8560-8565 if ( CheckVersion($DBversion) ) { Link Here
8560
    SetVersion($DBversion);
8560
    SetVersion($DBversion);
8561
}
8561
}
8562
8562
8563
8564
8565
8566
$DBversion = "3.15.00.XXX";
8567
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8568
    $dbh->do(q{
8569
        INSERT INTO systempreferences (variable,value,explanation,options,type)
8570
        VALUES('IdRef','0','Disable/enable the IdRef webservice from the OPAC detail page.',NULL,'YesNo')
8571
    });
8572
    print "Upgrade to $DBversion done (Bug 8992: Add system preference IdRef))\n";
8573
    SetVersion($DBversion);
8574
}
8575
8576
8577
8578
8563
=head1 FUNCTIONS
8579
=head1 FUNCTIONS
8564
8580
8565
=head2 TableExists($table)
8581
=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