| Summary: | No need to maintain autocomplete compatibility | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Jonathan Druart <jonathan.druart> |
| Component: | ILL | Assignee: | Bugs List <koha-bugs> |
| Status: | NEW --- | QA Contact: | Testopia <testopia> |
| Severity: | normal | ||
| Priority: | P5 - low | CC: | lisette, pedro.amorim, tomascohen |
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
| Bug Depends on: | 35570 | ||
| Bug Blocks: | |||
circ/ysearch.pl does no longer exist. Since we now have this backend in core we should remove this code. |
136 /* Maintain patron autocomplete compatibility across versions */ 137 [% IF koha_version.major <= 22 && koha_version.minor < 11 %] 138 $('#create_form #cardnumber').autocomplete({ 139 source: "/cgi-bin/koha/circ/ysearch.pl", 140 minLength: 3, 141 select: function( event, ui ) { 142 var field = ui.item.cardnumber; 143 $('#create_form #cardnumber').val(field) 144 return false; 145 } 146 })