From 5bdd1fdebf97736cca82d1a5c9a686b0562b752d Mon Sep 17 00:00:00 2001 From: Stephan Diederich Date: Tue, 10 Sep 2013 23:21:58 +0200 Subject: [PATCH] use done instead of "save" button --- Classes/BITAuthenticationViewController.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Classes/BITAuthenticationViewController.m b/Classes/BITAuthenticationViewController.m index a740b5266a..bed6baf235 100644 --- a/Classes/BITAuthenticationViewController.m +++ b/Classes/BITAuthenticationViewController.m @@ -160,8 +160,10 @@ if (section == 0) { if(self.showsLoginViaWebButton) { return BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerWebLoginDescription"); + } else if(self.requirePassword) { + return BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerDataEmailAndPasswordDescription"); } else { - return BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerDataDescription"); + return BITHockeyLocalizedString(@"HockeyAuthenticationViewControllerDataEmailDescription"); } }