summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-04-19 19:13:03 +0100
committerlsces <lester@lsces.co.uk>2026-04-19 19:13:03 +0100
commit8e8281376d9c5e2d9b8fc428a27721c0d406ea59 (patch)
tree6c481a0bb750f81b14c560c37245506b25d3094d /includes
parent7e1dbf3a0ff3b84d1c5d84aee94f11e05434a126 (diff)
downloadusers-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.tar.gz
users-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.tar.bz2
users-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.zip
Namesspace tidies for general authentication functions
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/classes/BaseAuth.php2
-rwxr-xr-xincludes/register_inc.php1
2 files changed, 2 insertions, 1 deletions
diff --git a/includes/classes/BaseAuth.php b/includes/classes/BaseAuth.php
index dfea52e..11fc29e 100755
--- a/includes/classes/BaseAuth.php
+++ b/includes/classes/BaseAuth.php
@@ -177,7 +177,7 @@ class BaseAuth {
} elseif (!empty($pAuthMixed)) {
$authPlugin=BaseAuth::getAuthMethod( $pAuthMixed );
if (file_exists( $authPlugin['file'] )) {
-// require_once $authPlugin['file'];
+ require_once $authPlugin['file'];
$cl = $authPlugin['class'];
$instance = new $cl();
if( $instance->isSupported() ) {
diff --git a/includes/register_inc.php b/includes/register_inc.php
index 6d8c338..903e921 100755
--- a/includes/register_inc.php
+++ b/includes/register_inc.php
@@ -3,6 +3,7 @@
use Bitweaver\HttpStatusCodes;
use Bitweaver\KernelTools;
use Bitweaver\Wiki\BitPage;
+use Bitweaver\Users\RolePermUser;
// Register the new user
$userClass = $gBitSystem->getConfig( 'user_class', 'RolePermUser' );