aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_resend.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/ucp/ucp_resend.php')
-rw-r--r--phpBB/includes/ucp/ucp_resend.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/ucp/ucp_resend.php b/phpBB/includes/ucp/ucp_resend.php
index 8e27961bca..35cbed1522 100644
--- a/phpBB/includes/ucp/ucp_resend.php
+++ b/phpBB/includes/ucp/ucp_resend.php
@@ -13,9 +13,9 @@
* ucp_resend
* Resending activation emails
*/
-class ucp_resend extends module
+class ucp_resend
{
- function ucp_resend($id, $mode)
+ function main($id, $mode)
{
global $config, $db, $user, $auth, $SID, $template, $phpbb_root_path, $phpEx;
@@ -143,7 +143,7 @@ class ucp_resend extends module
'EMAIL' => $email)
);
- $this->display($user->lang['UCP_RESEND'], 'ucp_resend.html');
+ $this->tpl_name = 'ucp_resend';
}
}