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 01:11:36 +0400
committerBrice Maron <brice@bmaron.net>2012-10-23 01:11:36 +0400
commit1016c0438f3e8f1a96340068314853ea491f34bb (patch)
tree18e89c7ed0f14fb03621eb2688021fe2cc3d06fd /user_saml
parent003d6221e29f98ff6141ce97f58ab731f266cc5a (diff)
Fix some style
Diffstat (limited to 'user_saml')
-rw-r--r--user_saml/auth.php2
-rw-r--r--user_saml/user_saml.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/user_saml/auth.php b/user_saml/auth.php
index 964c0cbff..0901148c5 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);
}