mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 07:47:34 +02:00
[feature/auth-refactor] Fix typos causing changes to not work
Replaces short tags with long tags. Fixes the interface to be an interface and not class in the file. Removes unnecessary include_once from auth.php. PHPBB-9734
This commit is contained in:
@@ -930,7 +930,6 @@ class phpbb_auth
|
|||||||
global $config, $db, $user, $phpbb_root_path, $phpEx;
|
global $config, $db, $user, $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
$method = trim(basename($config['auth_method']));
|
$method = trim(basename($config['auth_method']));
|
||||||
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
||||||
|
|
||||||
$class = 'phpbb_auth_provider_' . $method;
|
$class = 'phpbb_auth_provider_' . $method;
|
||||||
if (class_exists($class))
|
if (class_exists($class))
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
@@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
|||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
*/
|
*/
|
||||||
class phpbb_auth_provider_interface
|
interface phpbb_auth_provider_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Checks whether the user is currently identified to the authentication
|
* Checks whether the user is currently identified to the authentication
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<?
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
|
Reference in New Issue
Block a user