mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Interwiki
synced 2024-11-28 08:10:42 +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
|
@ -26,3 +26,7 @@ table.mw-interwikitable.body td.mw-interwikitable-modify {
|
|||
.mw-interwikitable-url {
|
||||
text-align: left;
|
||||
}
|
||||
input#mw-interwiki-url {
|
||||
text-align: left;
|
||||
direction: ltr;
|
||||
}
|
|
@ -77,7 +77,9 @@ class SpecialInterwiki extends SpecialPage {
|
|||
}
|
||||
|
||||
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' );
|
||||
$token = $wgUser->editToken();
|
||||
|
|
Loading…
Reference in a new issue