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:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-09-06 01:28:59 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2012-09-06 01:28:59 +0400
commit47d6a85dfc061f1e155c3e6329484a93d87969d0 (patch)
treef201c96deb90b927a36400c6478aef0369f7b2cb /django_auth
parentd1a85461e7afe22705fa23a5efc0959ca5bc9206 (diff)
no more require_once()
Diffstat (limited to 'django_auth')
-rw-r--r--django_auth/appinfo/app.php4
-rw-r--r--django_auth/lib/user.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/django_auth/appinfo/app.php b/django_auth/appinfo/app.php
index e4da3fb72..bebe33448 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 'apps/django_auth/lib/user.php';
+require_once 'apps/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 c676cc4d4..152d0bd8e 100644
--- a/django_auth/lib/user.php
+++ b/django_auth/lib/user.php
@@ -21,7 +21,7 @@
*
*/
-require_once('phpsec.crypt.php');
+require_once 'phpsec.crypt.php';
/**
* @brief Class providing django users to ownCloud