1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14492] Rename files to help_phpbb and fix css tabbing

PHPBB3-14492
This commit is contained in:
Marc Alexander
2016-01-31 23:49:17 +01:00
parent 6f315da9ab
commit c1035c98e4
5 changed files with 87 additions and 56 deletions

View File

@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
exit;
}
class acp_send_statistics
class acp_help_phpbb
{
var $u_action;
@@ -34,7 +34,7 @@ class acp_send_statistics
$collect_url = "https://www.phpbb.com/stats/receive_stats.php";
$this->tpl_name = 'acp_send_statistics';
$this->tpl_name = 'acp_help_phpbb';
$this->page_title = 'ACP_SEND_STATISTICS';
// generate a unique id if necessary

View File

@@ -11,15 +11,15 @@
*
*/
class acp_send_statistics_info
class acp_help_phpbb_info
{
function module()
{
return array(
'filename' => 'acp_send_statistics',
'filename' => 'acp_help_phpbb',
'title' => 'ACP_SEND_STATISTICS',
'modes' => array(
'send_statistics' => array('title' => 'ACP_SEND_STATISTICS', 'auth' => 'acl_a_server', 'cat' => array('ACP_SERVER_CONFIGURATION')),
'help_phpbb' => array('title' => 'ACP_SEND_STATISTICS', 'auth' => 'acl_a_server', 'cat' => array('ACP_SERVER_CONFIGURATION')),
),
);
}