From 83fd11f17bf3ae317f74aeaa67d73c62f13ca3d5 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 23 Apr 2016 06:32:12 +0000 Subject: [PATCH] Bidi-isolate revisions count in Special:Import Change-Id: I3aacc10dd76aba9f4315db284a4bafe629219bc1 --- includes/specials/SpecialImport.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/specials/SpecialImport.php b/includes/specials/SpecialImport.php index fe1dd985d7..c58af603d2 100644 --- a/includes/specials/SpecialImport.php +++ b/includes/specials/SpecialImport.php @@ -594,9 +594,13 @@ class ImportReporter extends ContextSource { $this->mPageCount++; if ( $successCount > 0 ) { + // prevents jumbling of the versions count + // in RTL wikis in case the page title is LTR $this->getOutput()->addHTML( "
  • " . Linker::linkKnown( $title ) . " " . + "" . $this->msg( 'import-revision-count' )->numParams( $successCount )->escaped() . + "" . "
  • \n" ); -- 2.20.1