diff options
Diffstat (limited to 'lib/json.php')
-rw-r--r-- | lib/json.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/json.php b/lib/json.php index c362c66693b..0a62dc8a65b 100644 --- a/lib/json.php +++ b/lib/json.php @@ -81,15 +81,26 @@ class OC_JSON{ /** * Check if the user verified the login with his password in the last 15 minutes - * @return bool */ public static function verifyUser() { // Check if the user verified his password in the last 15 minutes if($_SESSION['verifiedLogin'] < time() OR !isset($_SESSION['verifiedLogin'])) { + $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } } + /** + * Check if the user verified the login with his password in the last 15 minutes + * @return bool + */ + public static function isUserVerified() { + // Check if the user verified his password in the last 15 minutes + if($_SESSION['verifiedLogin'] < time() OR !isset($_SESSION['verifiedLogin'])) { + return false; + } + return true; + } /** * Send json error msg |