Brion VIBBER has submitted this change and it was merged.

Change subject: Fix for doubled "self" reference.
......................................................................


Fix for doubled "self" reference.

Change-Id: I3b46ae4dc0d1154427f9dc8082b31e1eae412782
---
M wikipedia/View Controllers/MainMenu/MainMenuViewController.m
1 file changed, 3 insertions(+), 3 deletions(-)

Approvals:
  Brion VIBBER: Verified; Looks good to me, approved



diff --git a/wikipedia/View Controllers/MainMenu/MainMenuViewController.m 
b/wikipedia/View Controllers/MainMenu/MainMenuViewController.m
index 8d5ec72..91c7441 100644
--- a/wikipedia/View Controllers/MainMenu/MainMenuViewController.m
+++ b/wikipedia/View Controllers/MainMenu/MainMenuViewController.m
@@ -214,19 +214,19 @@
     NSAttributedString *searchWikiTitle =
     [MWLocalizedString(@"main-menu-language-title", nil) 
attributedStringWithAttributes: nil
                                                                     
substitutionStrings: @[[SessionSingleton sharedInstance].domainName]
-                                                                 
substitutionAttributes: @[self.self.highlightedTextAttributes]
+                                                                 
substitutionAttributes: @[self.highlightedTextAttributes]
      ];
     
     NSAttributedString *saveArticleTitle =
     [MWLocalizedString(@"main-menu-current-article-save", nil) 
attributedStringWithAttributes: nil
                                                                           
substitutionStrings: @[currentArticleTitle]
-                                                                       
substitutionAttributes: @[self.self.highlightedTextAttributes]
+                                                                       
substitutionAttributes: @[self.highlightedTextAttributes]
      ];
 
     NSAttributedString *pageHistoryTitle =
     [MWLocalizedString(@"main-menu-show-page-history", nil) 
attributedStringWithAttributes: nil
                                                                        
substitutionStrings: @[currentArticleTitle]
-                                                                    
substitutionAttributes: @[self.self.highlightedTextAttributes]
+                                                                    
substitutionAttributes: @[self.highlightedTextAttributes]
      ];
     
     NSMutableArray *rowData =

-- 
To view, visit https://gerrit.wikimedia.org/r/131538
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I3b46ae4dc0d1154427f9dc8082b31e1eae412782
Gerrit-PatchSet: 1
Gerrit-Project: apps/ios/wikipedia
Gerrit-Branch: master
Gerrit-Owner: Mhurd <mh...@wikimedia.org>
Gerrit-Reviewer: Brion VIBBER <br...@wikimedia.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to