mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Interwiki
synced 2024-12-01 01:16:35 +00:00
Follow-up 90518: also align URL input box as LTR
This commit is contained in:
parent
4f12bf285c
commit
be4b52fed1
Notes:
Robin Pepermans
2011-06-21 10:49:52 +00:00
|
@ -25,4 +25,8 @@ table.mw-interwikitable.body td.mw-interwikitable-modify {
|
||||||
}
|
}
|
||||||
.mw-interwikitable-url {
|
.mw-interwikitable-url {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
}
|
||||||
|
input#mw-interwiki-url {
|
||||||
|
text-align: left;
|
||||||
|
direction: ltr;
|
||||||
}
|
}
|
|
@ -77,7 +77,9 @@ class SpecialInterwiki extends SpecialPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showForm( $action ) {
|
function showForm( $action ) {
|
||||||
global $wgRequest, $wgUser, $wgOut;
|
global $wgRequest, $wgUser, $wgOut, $wgScriptPath;
|
||||||
|
|
||||||
|
$wgOut->addExtensionStyle( "{$wgScriptPath}/extensions/Interwiki/Interwiki.css" );
|
||||||
|
|
||||||
$actionUrl = $this->getTitle()->getLocalURL( 'action=submit' );
|
$actionUrl = $this->getTitle()->getLocalURL( 'action=submit' );
|
||||||
$token = $wgUser->editToken();
|
$token = $wgUser->editToken();
|
||||||
|
|
Loading…
Reference in a new issue