1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +02:00

[feature/oauth] Start general auth linking page

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-08-05 15:34:26 -04:00
parent 3cbb973160
commit baa3a750c4
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
*
* @package notifications
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
class ucp_auth_link
{
public $u_action;
public function main($id, $mode)
{
$this->tpl_name = 'ucp_auth_link';
$this->page_title = 'UCP_AUTH_LINK';
}
}