aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_remind.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/ucp/ucp_remind.php')
-rw-r--r--phpBB/includes/ucp/ucp_remind.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/ucp/ucp_remind.php b/phpBB/includes/ucp/ucp_remind.php
index dea1027ce6..7308d9b9f8 100644
--- a/phpBB/includes/ucp/ucp_remind.php
+++ b/phpBB/includes/ucp/ucp_remind.php
@@ -13,9 +13,9 @@
* ucp_remind
* Sending password reminders
*/
-class ucp_remind extends module
+class ucp_remind
{
- function ucp_remind($id, $mode)
+ function main($id, $mode)
{
global $config, $db, $user, $auth, $SID, $template, $phpbb_root_path, $phpEx;
@@ -95,7 +95,7 @@ class ucp_remind extends module
'EMAIL' => $email)
);
- $this->display($user->lang['UCP_REMIND'], 'ucp_remind.html');
+ $this->tpl_name = 'ucp_remind';
}
}