Page MenuHomePhabricator

Disclaimer link has broken URL
Closed, ResolvedPublic

Description

The disclaimer link at the bottom of every page (at least in Modern and MonoBook) points to the wrong URL: it points to http://en.wikipedia.org/wiki/Disclaimerpage, instead of evaluating the content of MediaWiki:Disclaimerpage and accordingly pointing to http://en.wikipedia.org/wiki/Wikipedia:General_disclaimer. The same is true for the Aboutpage and Privacypage links. Note that the Aboutpage link in the sidebar is fine.

Marking as major because this may have legal implications.


Version: 1.16.x
Severity: major

Details

Reference
bz19202

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 10:43 PM
bzimport set Reference to bz19202.
bzimport added a subscriber: Unknown Object (MLST).

overlordq wrote:

AFAIK caused by r51819.

disclaimers link calls:

return $this->footerLink( 'disclaimers', 'disclaimerpage' );

footerLink takes:

$title = Title::newFromText( $page );

where $page is the second parameter. It doesn't call wfMsgForContent to get what the message is so just links to Disclaimerpage.

Then again I could be wrong :)