diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-05 15:38:58 -0400 |
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-05 17:35:44 -0400 |
| commit | 4683c37682541f73deca1f1476daf8c24f6962d6 (patch) | |
| tree | a818c7c71dc32cfb75b4425136cf50cc9d6d5c8f /phpBB/includes | |
| parent | baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1 (diff) | |
| download | forums-4683c37682541f73deca1f1476daf8c24f6962d6.tar forums-4683c37682541f73deca1f1476daf8c24f6962d6.tar.gz forums-4683c37682541f73deca1f1476daf8c24f6962d6.tar.bz2 forums-4683c37682541f73deca1f1476daf8c24f6962d6.tar.xz forums-4683c37682541f73deca1f1476daf8c24f6962d6.zip | |
[feature/oauth] Forgot to have login_link be "in login" in ucp
PHPBB3-11673
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/ucp/info/ucp_auth_link.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/info/ucp_auth_link.php b/phpBB/includes/ucp/info/ucp_auth_link.php new file mode 100644 index 0000000000..c5cd997af4 --- /dev/null +++ b/phpBB/includes/ucp/info/ucp_auth_link.php @@ -0,0 +1,34 @@ +<?php +/** +* +* @package ucp +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @package module_install +*/ +class ucp_auth_link_info +{ + function module() + { + return array( + 'filename' => 'ucp_auth_link', + 'title' => 'UCP_AUTH_LINK', + 'version' => '1.0.0', + 'modes' => array( + 'auth_link' => array('title' => 'UCP_AUTH_LINK_MANAGE', 'auth' => '', 'cat' => array('UCP_MAIN')), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} |
