From 90a11efecd0c87feff40a25504e1cf29332d7d08 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 4 Aug 2015 21:41:33 +0200 Subject: Remove "use" statement Ref https://bugs.php.net/bug.php?id=66773 --- lib/private/appframework/http/request.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/private/appframework') diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 6f108fedc6d..43f01dfde3f 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -33,7 +33,6 @@ use OC\Security\TrustedDomainHelper; use OCP\IConfig; use OCP\IRequest; use OCP\Security\ISecureRandom; -use OCP\Security\StringUtils; /** * Class for accessing variables in the request. @@ -417,7 +416,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { } // Check if the token is valid - if(StringUtils::equals($token, $this->items['requesttoken'])) { + if(\OCP\Security\StringUtils::equals($token, $this->items['requesttoken'])) { return true; } else { return false; -- cgit v1.2.3