From 097f4298165a7d028757de61c6fef49f1f8f6a9a Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@statuscode.ch>
Date: Tue, 16 Oct 2012 00:32:06 +0200
Subject: [PATCH] Add isUserVerified()

---
 lib/json.php | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/lib/json.php b/lib/json.php
index c362c66693..0a62dc8a65 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
-- 
GitLab