From 235e980250df11ca7da52310da6a678f0057b9e2 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Mon, 12 Jun 2017 11:56:25 +0000 Subject: [PATCH] force the domframework path in require git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3752 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- authhtpasswd.php | 2 ++ authldap.php | 2 ++ authshibboleth.php | 2 ++ authsql.php | 1 + 4 files changed, 7 insertions(+) diff --git a/authhtpasswd.php b/authhtpasswd.php index 06f7129..c4587ab 100644 --- a/authhtpasswd.php +++ b/authhtpasswd.php @@ -3,6 +3,8 @@ @package domframework @author Dominique Fournier */ +require_once ("domframework/auth.php"); + /** User authentication against .htpasswd file A .htpasswd can be created by the 'htpasswd' command for Apache, and contain toto@toto.com:$2y$05$uHCUNqicE7Pku3MK1qZaDuJxP/pocqCcEAnacZBjsfWgW9EcuG5y2 diff --git a/authldap.php b/authldap.php index bca51ad..14bea25 100644 --- a/authldap.php +++ b/authldap.php @@ -3,6 +3,8 @@ @package domframework @author Dominique Fournier */ +require_once ("domframework/auth.php"); + /** User authentication against LDAP server */ class authldap extends auth { diff --git a/authshibboleth.php b/authshibboleth.php index fa51781..640a9ed 100644 --- a/authshibboleth.php +++ b/authshibboleth.php @@ -3,6 +3,8 @@ @package domframework @author Dominique Fournier */ +require_once ("domframework/auth.php"); + /** User authentication against Shibboleth */ class authshibboleth extends auth { diff --git a/authsql.php b/authsql.php index 35c8e84..c1a3283 100644 --- a/authsql.php +++ b/authsql.php @@ -4,6 +4,7 @@ @author Dominique Fournier */ require_once ("domframework/dblayer.php"); +require_once ("domframework/auth.php"); /** User authentication against SQL database */ class authsql extends auth