Index: trunk/extensions/DonationInterface/globalcollect_gateway/forms/js/webitects_2_3step.js |
— | — | @@ -140,7 +140,7 @@ |
141 | 141 | showStep3(); // Open the 3rd section |
142 | 142 | var language = 'en'; // default value is English |
143 | 143 | var matches = document.location.href.match(/uselang=(\w+)/i); // fine the real language |
144 | | - if ( matches[1] ) { |
| 144 | + if ( matches && matches[1] ) { |
145 | 145 | language = matches[1]; |
146 | 146 | } |
147 | 147 | var sendData = { |
— | — | @@ -162,7 +162,7 @@ |
163 | 163 | 'format': 'json' |
164 | 164 | }; |
165 | 165 | $.ajax( { |
166 | | - 'url': mw.util.wikiScript( 'api' ), |
| 166 | + 'url': mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) + '/api.php?', |
167 | 167 | 'data': sendData, |
168 | 168 | 'dataType': 'json', |
169 | 169 | 'type': 'GET', |