summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/appinfo
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-02-16 17:55:39 +0100
committerArthur Schiwon <blizzz@owncloud.com>2012-02-20 10:39:55 +0100
commit7ff4e40b20dfeb937ff6dccbc87e42a8bc4f5115 (patch)
treea6c98ab64634e57bc5eab379694f7fbd15befdc8 /apps/user_ldap/appinfo
parent490c9db15da89797eea5c3e30fc9a0790bd60b32 (diff)
downloadnextcloud-server-7ff4e40b20dfeb937ff6dccbc87e42a8bc4f5115.tar.gz
nextcloud-server-7ff4e40b20dfeb937ff6dccbc87e42a8bc4f5115.zip
Combing LDAP backend with LDAP extended backend
Diffstat (limited to 'apps/user_ldap/appinfo')
-rw-r--r--apps/user_ldap/appinfo/app.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/appinfo/app.php b/apps/user_ldap/appinfo/app.php
index 3261708f590..5c56ca8191e 100644
--- a/apps/user_ldap/appinfo/app.php
+++ b/apps/user_ldap/appinfo/app.php
@@ -32,13 +32,13 @@ define('OC_USER_BACKEND_LDAP_DEFAULT_PORT', 389);
define('OC_USER_BACKEND_LDAP_DEFAULT_DISPLAY_NAME', 'uid');
// register user backend
-OC_User::useBackend( "LDAP" );
+OC_User::useBackend( 'LDAP' );
// add settings page to navigation
$entry = array(
- 'id' => "user_ldap_settings",
+ 'id' => 'user_ldap_settings',
'order'=>1,
- 'href' => OC_Helper::linkTo( "user_ldap", "settings.php" ),
+ 'href' => OC_Helper::linkTo( 'user_ldap', 'settings.php' ),
'name' => 'LDAP'
);
// OC_App::addNavigationSubEntry( "core_users", $entry);