Index: trunk/phase3/skins/common/mwsuggest.js |
— | — | @@ -840,6 +840,11 @@ |
841 | 841 | // remove descriptor |
842 | 842 | os_map[inputId] = null; |
843 | 843 | } |
| 844 | + |
| 845 | + // Remove the element from the os_autoload_* arrays |
| 846 | + var index = os_autoload_inputs.indexOf(inputId); |
| 847 | + if ( index >= 0 ) |
| 848 | + os_autoload_inputs[index] = os_autoload_forms[index] = ''; |
844 | 849 | } |
845 | 850 | |
846 | 851 | /** Initialization, call upon page onload */ |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1591,7 +1591,7 @@ |
1592 | 1592 | * to ensure that client-side caches do not keep obsolete copies of global |
1593 | 1593 | * styles. |
1594 | 1594 | */ |
1595 | | -$wgStyleVersion = '239'; |
| 1595 | +$wgStyleVersion = '240'; |
1596 | 1596 | |
1597 | 1597 | |
1598 | 1598 | # Server-side caching: |