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:
authorSixto Martin <smartin@yaco.es>2012-11-22 14:37:48 +0400
committerSixto Martin <smartin@yaco.es>2012-11-22 14:37:48 +0400
commit6f6786e4c54712b320e1a274fbbcebac668b147b (patch)
tree88befd53f17cd898a448d8610b89dcdbdec835fb /user_saml
parent0eec1e807c4694ccb8c061d3c0f6b5a23bf4dd35 (diff)
parentf72feb00e10acff078bf1e5adce967a21a4b29a7 (diff)
Merge branch 'master' of git://github.com/owncloud/apps
Diffstat (limited to 'user_saml')
-rw-r--r--user_saml/HOWTO.txt6
-rw-r--r--user_saml/auth.php2
-rw-r--r--user_saml/user_saml.php2
3 files changed, 5 insertions, 5 deletions
diff --git a/user_saml/HOWTO.txt b/user_saml/HOWTO.txt
index dc91690a9..96671fa39 100644
--- a/user_saml/HOWTO.txt
+++ b/user_saml/HOWTO.txt
@@ -12,8 +12,8 @@ This App require a simpleSAMLphp SP installed, configured and conected to an IdP
STEPS
-----
-1. Copy the folder inside the owncloud's apps folder.
-2. Access to Owncloud web with an user with admin privileges.
+1. Copy the folder inside the ownCloud's apps folder.
+2. Access to ownCloud web with an user with admin privileges.
3. Access to the Appications pannel and enable the SAML app.
4. Access to the Administration pannel and configure the SAML app.
@@ -21,7 +21,7 @@ STEPS
EXTRA INFO
==========
-* If you enable the "Autocreate user after saml login" option, then if an user does not exist, will be created. If this option is disabled and the user does not existed then the user will be not allowed to log in Owncloud.
+* If you enable the "Autocreate user after saml login" option, then if an user does not exist, will be created. If this option is disabled and the user does not existed then the user will be not allowed to log in ownCloud.
* If you enable the "Update user data" option, when an existed user enter, then his email and groups will be updated.
diff --git a/user_saml/auth.php b/user_saml/auth.php
index b0afe88fb..945d226d5 100644
--- a/user_saml/auth.php
+++ b/user_saml/auth.php
@@ -28,7 +28,7 @@
$autocreate = OCP\Config::getAppValue('user_saml', 'saml_autocreate', false);
if (!empty($sspPath) && !empty($spSource)) {
- include_once($sspPath."/lib/_autoload.php");
+ include_once $sspPath."/lib/_autoload.php";
$auth = new SimpleSAML_Auth_Simple($spSource);
diff --git a/user_saml/user_saml.php b/user_saml/user_saml.php
index 4f68d4f21..b014ec9ab 100644
--- a/user_saml/user_saml.php
+++ b/user_saml/user_saml.php
@@ -48,7 +48,7 @@ class OC_USER_SAML extends OC_User_Backend {
$this->groupMapping = OCP\Config::getAppValue('user_saml', 'saml_group_mapping', '');
if (!empty($this->sspPath) && !empty($this->spSource)) {
- include_once($this->sspPath."/lib/_autoload.php");
+ include_once $this->sspPath."/lib/_autoload.php";
$this->auth = new SimpleSAML_Auth_Simple($this->spSource);
}