Author: urkle
Description:
The ajax search feature works fine using the monobook skin, but it fails to function properly using the modern skin.
The cause is the ajaxsearch.js code expects to find a div with the id of "content" and in modern the div is named "mw_content" instead.
This can be fixed either by one of the following
- changing the modern theme to use the same ID as the rest of the themes..
- change the rest of the themes to use mw_content id and update the ajaxsearch.js to use that ID as well
- update ajax search to check BOTH ids. body = document.getElementById("content") || document.getElementById("mw_content");
Version: 1.12.x
Severity: enhancement