Index: trunk/extensions/CategoryMultisort/CategoryMultisort.hooks.php |
— | — | @@ -355,7 +355,7 @@ |
356 | 356 | } |
357 | 357 | |
358 | 358 | function onCategoryPageView_buildSortkeySelectForm( $current = '' ) { |
359 | | - global $wgCategoryMultisortSortkeySettings, $wgArticle, $wgScript; |
| 359 | + global $wgCategoryMultisortSortkeySettings, $wgArticle, $wgScript, $wgContLang; |
360 | 360 | |
361 | 361 | $html = ''; |
362 | 362 | |
— | — | @@ -388,7 +388,7 @@ |
389 | 389 | 'action' => $wgScript, |
390 | 390 | 'method' => 'get', |
391 | 391 | 'id' => 'categorymultisort-select-form', |
392 | | - 'style' => 'float: right;', |
| 392 | + 'style' => "float: {$wgContLang->alignEnd()};", |
393 | 393 | ), $html ); |
394 | 394 | } |
395 | 395 | |