Description
Description
Details
Details
- Reference
- bz24799
Subject | Repo | Branch | Lines +/- | |
---|---|---|---|---|
Add `edit` links to `Special:NewPages` | mediawiki/core | master | +10 -4 |
Related Objects
Related Objects
Event Timeline
Comment Actions
If its urgent (probably isn't, given that its been a decade), the following JavaScript does the same thing. I'll try to work on this soon.
New pages edit links
$(document).ready( function () { if ( mw.config.get('wgCanonicalSpecialPageName') === 'Newpages' ) { $('.mw-newpages-history > a').before( function () { return ( '<a href=\'' + this.href.replace( /action=history/, 'action=edit' ) + '\'>edit</a> | ' ); } ); } } );
Comment Actions
Change 549198 had a related patch set uploaded (by DannyS712; owner: DannyS712):
[mediawiki/core@master] Add edit links to Special:NewPages
Comment Actions
Change 549198 merged by jenkins-bot:
[mediawiki/core@master] Add edit links to Special:NewPages