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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 134-139 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
134
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
134
('IDreamBooksReadometer','0','','Display Readometer from IDreamBooks.com','YesNo'),
135
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
135
('IDreamBooksResults','0','','Display IDreamBooks.com rating in search results','YesNo'),
136
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
136
('IDreamBooksReviews','0','','Display book review snippets from IDreamBooks.com','YesNo'),
137
('IdRef','0','','Disable/enable the IdRef webservice from the OPAC detail page.','YesNo'),
137
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
138
('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'),
138
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
139
('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'),
139
('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'),
140
('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 8202-8207 if ( CheckVersion($DBversion) ) { Link Here
8202
    SetVersion($DBversion);
8202
    SetVersion($DBversion);
8203
}
8203
}
8204
8204
8205
8206
8207
8208
$DBversion = "3.15.00.XXX";
8209
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
8210
    $dbh->do(q{
8211
        INSERT INTO systempreferences (variable,value,explanation,options,type)
8212
        VALUES('IdRef','0','Disable/enable the IdRef webservice from the OPAC detail page.',NULL,'YesNo')
8213
    });
8214
    print "Upgrade to $DBversion done (Bug 8992: Add system preference IdRef))\n";
8215
    SetVersion($DBversion);
8216
}
8217
8218
8219
8220
8205
=head1 FUNCTIONS
8221
=head1 FUNCTIONS
8206
8222
8207
=head2 TableExists($table)
8223
=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