Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-10-23 22:34:49 +0400
committerBrice Maron <brice@bmaron.net>2012-10-23 22:34:49 +0400
commit1f09b458031d39b043e22080f486612f8d8d22fa (patch)
tree176e784bf2195c2f50503fca5141f080d529702e /django_auth
parent670560019f276b74cde4c680d06767e59a5cec82 (diff)
Move phpsec.crypt 3rd party lib to 3party folder
Diffstat (limited to 'django_auth')
-rw-r--r--django_auth/3rdparty/phpsec.crypt.php (renamed from django_auth/lib/phpsec.crypt.php)0
-rw-r--r--django_auth/appinfo/app.php4
-rw-r--r--django_auth/lib/user.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/django_auth/lib/phpsec.crypt.php b/django_auth/3rdparty/phpsec.crypt.php
index 144ce46a5..144ce46a5 100644
--- a/django_auth/lib/phpsec.crypt.php
+++ b/django_auth/3rdparty/phpsec.crypt.php
diff --git a/django_auth/appinfo/app.php b/django_auth/appinfo/app.php
index 37b22b597..e4b82e7b9 100644
--- a/django_auth/appinfo/app.php
+++ b/django_auth/appinfo/app.php
@@ -21,8 +21,8 @@
*
*/
-require_once 'apps/django_auth/lib/user.php';
-require_once 'apps/django_auth/lib/group.php' ;
+require_once 'django_auth/lib/user.php';
+require_once 'django_auth/lib/group.php' ;
define('OC_GROUP_BACKEND_DJANGO_STAFF_IS_ADMIN', true);
define('OC_GROUP_BACKEND_DJANGO_SUPERUSER_IS_ADMIN', true);
diff --git a/django_auth/lib/user.php b/django_auth/lib/user.php
index b617bd395..63ae5bbbd 100644
--- a/django_auth/lib/user.php
+++ b/django_auth/lib/user.php
@@ -21,7 +21,7 @@
*
*/
-require_once 'phpsec.crypt.php';
+require_once 'django_auth/3rdparty/phpsec.crypt.php';
/**
* @brief Class providing django users to ownCloud