Fix translation bug on lost password page

Fix nextcloud/password_policy#26

Signed-off-by: Rémy Jacquin <remy@remyj.fr>
This commit is contained in:
Rémy Jacquin 2018-05-20 12:51:50 +02:00
parent 5a9e54ad59
commit 4130f279b2
No known key found for this signature in database
GPG Key ID: BEEF3B9EC3E7FBE9
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@
namespace OC\Core\Controller; namespace OC\Core\Controller;
use OC\HintException;
use \OCP\AppFramework\Controller; use \OCP\AppFramework\Controller;
use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\JSONResponse;
use \OCP\AppFramework\Http\TemplateResponse; use \OCP\AppFramework\Http\TemplateResponse;
@ -274,6 +275,8 @@ class LostController extends Controller {
$this->config->deleteUserValue($userId, 'core', 'lostpassword'); $this->config->deleteUserValue($userId, 'core', 'lostpassword');
@\OC_User::unsetMagicInCookie(); @\OC_User::unsetMagicInCookie();
} catch (HintException $e){
return $this->error($e->getHint());
} catch (\Exception $e){ } catch (\Exception $e){
return $this->error($e->getMessage()); return $this->error($e->getMessage());
} }