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'; |
| 11779 | + wikiText += '{{Information\n' + info + '}}\n\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; |
| 11787 | + wikiText += otherInfoWikiText + "\n\n"; |
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(); |
| 11794 | + wikiText += deed.getLicenseWikiText() + _this.div.find( '.categoryInput' ).get(0).getWikiText() + "\n\n"; |
11795 | 11795 | |
11796 | 11796 | |
11797 | 11797 | return wikiText; |
Index: trunk/extensions/UploadWizard/resources/combined.min.js |
— | — | @@ -11775,7 +11775,7 @@ |
11776 | 11776 | |
11777 | 11777 | wikiText+="=={{int:filedesc}}==\n"; |
11778 | 11778 | |
11779 | | -wikiText+='{{Information\n'+info+'}}\n'; |
| 11779 | +wikiText+='{{Information\n'+info+'}}\n\n'; |
11780 | 11780 | |
11781 | 11781 | |
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; |
| 11787 | +wikiText+=otherInfoWikiText+"\n\n"; |
11788 | 11788 | } |
11789 | 11789 | |
11790 | 11790 | wikiText+="=={{int:license-header}}==\n"; |
11791 | 11791 | |
11792 | 11792 | |
11793 | 11793 | |
11794 | | -wikiText+=deed.getLicenseWikiText()+_this.div.find('.categoryInput').get(0).getWikiText(); |
| 11794 | +wikiText+=deed.getLicenseWikiText()+_this.div.find('.categoryInput').get(0).getWikiText()+"\n\n"; |
11795 | 11795 | |
11796 | 11796 | |
11797 | 11797 | return wikiText; |