The URL of the watchlist on an installation without URL rewriting is index.php?title=Special:Watchlist. A submit of the setting changes leads to the URL index.php?days=0&namespace=&action=submit. This is the edit page of the main page. The URL parameter title=Special:Watchlist get lost.
Description
Description
Details
Details
Subject | Repo | Branch | Lines +/- | |
---|---|---|---|---|
SpecialWatchlist: Move title from form action to hidden input | mediawiki/core | master | +2 -1 |
Event Timeline
Comment Actions
Change 259478 had a related patch set uploaded (by Gerrit Patch Uploader):
SpecialWatchlist: Move title from form action to hidden input
Comment Actions
Lines 686-690 of ChangeTags.php:
$html = Xml::tags( 'form', array( 'action' => $title->getLocalURL(), 'class' => 'mw-tagfilter-form', 'method' => 'get' ), $html );
Needs the same treatment.
Comment Actions
Yes, the action may have the same problem. But line 685 already contains:
$html .= "\n" . Html::hidden( 'title', $title->getPrefixedText() );
As far as I see is this part of code not used because ChangeTags::buildTagFilterSelector is never used with $fullForm == true.
Comment Actions
Change 259478 merged by jenkins-bot:
SpecialWatchlist: Move title from form action to hidden input