You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes an inconsistency in the way blog passwords were stored that might cause problems with .com blogs with custom domains.
Fixes an issue where an xmlrpc error due to bad credentials would prompt the user to update their password, but the password would not propigate to the .com api until the app was restarted.
Removes the old UIAlertView used for updating credentials, replacing it with the EditSiteViewController for a standardized look and feel.
Exposes a promptForPassword method to WPTableViewController subclasses. Would be nice to keep this hidden.
message:NSLocalizedString(@"The username or password stored in the app may be out of date. Please re-enter your password in the settings and try again.", @"")
message:NSLocalizedString(@"The username or password stored in the app may be out of date. Please re-enter your password in the settings and try again.", @"")
message:NSLocalizedString(@"The username or password stored in the app may be out of date. Please re-enter your password in the settings and try again.", @"")
[selfshowAlertWithTitle:NSLocalizedString(@"Error", @"Generic popup title for any type of error.") message:cleanedErrorMsg];
458
444
}
459
445
460
-
461
-
- (void)showPasswordAlert {
462
-
463
-
UILabel *labelPasswd;
464
-
465
-
NSString *lineBreaks;
466
-
467
-
if (IS_IPAD)
468
-
lineBreaks = @"\n\n\n\n";
469
-
else
470
-
lineBreaks = @"\n\n\n";
471
-
472
-
UIAlertView *customSizeAlert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Incorrect Password", @"If the password was lost, a popup asks the author to update their password, this is the popup's title.")
labelPasswd.text = NSLocalizedString(@"Please update your password:", @"If the password was lost, a popup asks the author to update their password, this is the popup's description.");
0 commit comments