From 5746c8d96ff50b7c520e3070270311992685fcce Mon Sep 17 00:00:00 2001 From: Joseph Warner Date: Thu, 4 Jul 2013 17:12:55 -0400 Subject: [PATCH] [feature/auth-refactor] Move auth providers to separate directory Moves the provider files to their own directory per bantu's suggestion. PHPBB3-9734 --- .../auth/{provider_apache.php => provider/apache.php} | 0 .../includes/auth/{provider_db.php => provider/db.php} | 0 phpBB/includes/auth/provider/index.htm | 10 ++++++++++ .../{provider_interface.php => provider/interface.php} | 0 .../auth/{provider_ldap.php => provider/ldap.php} | 0 5 files changed, 10 insertions(+) rename phpBB/includes/auth/{provider_apache.php => provider/apache.php} (100%) rename phpBB/includes/auth/{provider_db.php => provider/db.php} (100%) create mode 100644 phpBB/includes/auth/provider/index.htm rename phpBB/includes/auth/{provider_interface.php => provider/interface.php} (100%) rename phpBB/includes/auth/{provider_ldap.php => provider/ldap.php} (100%) diff --git a/phpBB/includes/auth/provider_apache.php b/phpBB/includes/auth/provider/apache.php similarity index 100% rename from phpBB/includes/auth/provider_apache.php rename to phpBB/includes/auth/provider/apache.php diff --git a/phpBB/includes/auth/provider_db.php b/phpBB/includes/auth/provider/db.php similarity index 100% rename from phpBB/includes/auth/provider_db.php rename to phpBB/includes/auth/provider/db.php diff --git a/phpBB/includes/auth/provider/index.htm b/phpBB/includes/auth/provider/index.htm new file mode 100644 index 0000000000..ee1f723a7d --- /dev/null +++ b/phpBB/includes/auth/provider/index.htm @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/phpBB/includes/auth/provider_interface.php b/phpBB/includes/auth/provider/interface.php similarity index 100% rename from phpBB/includes/auth/provider_interface.php rename to phpBB/includes/auth/provider/interface.php diff --git a/phpBB/includes/auth/provider_ldap.php b/phpBB/includes/auth/provider/ldap.php similarity index 100% rename from phpBB/includes/auth/provider_ldap.php rename to phpBB/includes/auth/provider/ldap.php