Index: trunk/extensions/UploadWizard/resources/combined.js |
— | — | @@ -11775,7 +11775,7 @@ |
11776 | 11776 | |
11777 | 11777 | wikiText += "=={{int:filedesc}}==\n"; |
11778 | 11778 | |
11779 | | - wikiText += '{{Information\n' + info + '}}\n\n'; |
| 11779 | + wikiText += '{{Information\n' + info + '}}\n'; |
11780 | 11780 | |
11781 | 11781 | // add a location template if possible |
11782 | 11782 | |
— | — | @@ -11783,14 +11783,14 @@ |
11784 | 11784 | var otherInfoWikiText = $j( _this.otherInformationInput ).val().trim(); |
11785 | 11785 | if ( ! mw.isEmpty( otherInfoWikiText ) ) { |
11786 | 11786 | wikiText += "=={{int:otherinfo}}==\n"; |
11787 | | - wikiText += otherInfoWikiText + "\n\n"; |
| 11787 | + wikiText += otherInfoWikiText; |
11788 | 11788 | } |
11789 | 11789 | |
11790 | 11790 | wikiText += "=={{int:license-header}}==\n"; |
11791 | 11791 | |
11792 | 11792 | // in the other implementations, category text follows immediately after license text. This helps |
11793 | 11793 | // group categories together, maybe? |
11794 | | - wikiText += deed.getLicenseWikiText() + _this.div.find( '.categoryInput' ).get(0).getWikiText() + "\n\n"; |
| 11794 | + wikiText += deed.getLicenseWikiText() + _this.div.find( '.categoryInput' ).get(0).getWikiText(); |
11795 | 11795 | |
11796 | 11796 | |
11797 | 11797 | return wikiText; |
Index: trunk/extensions/UploadWizard/resources/mw.UploadWizard.js |
— | — | @@ -1390,7 +1390,7 @@ |
1391 | 1391 | |
1392 | 1392 | wikiText += "=={{int:filedesc}}==\n"; |
1393 | 1393 | |
1394 | | - wikiText += '{{Information\n' + info + '}}\n'; |
| 1394 | + wikiText += '{{Information\n' + info + '}}\n\n'; |
1395 | 1395 | |
1396 | 1396 | // add a location template if possible |
1397 | 1397 | |
— | — | @@ -1398,14 +1398,14 @@ |
1399 | 1399 | var otherInfoWikiText = $j( _this.otherInformationInput ).val().trim(); |
1400 | 1400 | if ( ! mw.isEmpty( otherInfoWikiText ) ) { |
1401 | 1401 | wikiText += "=={{int:otherinfo}}==\n"; |
1402 | | - wikiText += otherInfoWikiText; |
| 1402 | + wikiText += otherInfoWikiText + "\n\n"; |
1403 | 1403 | } |
1404 | 1404 | |
1405 | 1405 | wikiText += "=={{int:license-header}}==\n"; |
1406 | 1406 | |
1407 | 1407 | // in the other implementations, category text follows immediately after license text. This helps |
1408 | 1408 | // group categories together, maybe? |
1409 | | - wikiText += deed.getLicenseWikiText() + _this.div.find( '.categoryInput' ).get(0).getWikiText(); |
| 1409 | + wikiText += deed.getLicenseWikiText() + _this.div.find( '.categoryInput' ).get(0).getWikiText() + "\n\n"; |
1410 | 1410 | |
1411 | 1411 | |
1412 | 1412 | return wikiText; |