Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/users/email/emailchange_plain.thtml
blob: 7a2ae906f721c9c3934ad5cc4b2402f6d56bdda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$confirmurl = SITE_URL.$html->url('/users/emailchange/'.$userid.'?code='
    .urlencode($changecode), true);

// @partial: translation fallback, 5/6/08
if (_('user_email_confirm_emailchange') != 'user_email_confirm_emailchange'):

echo $html->lineBreaks(sprintf(_('user_email_confirm_emailchange'),
    $confirmurl, APP_PRETTYNAME));

else:
echo "You requested a change to your email address at ".APP_PRETTYNAME." Add-ons.\n\n"
    ."In order to confirm the new address, please click the link below or copy "
    ."and paste the whole thing into your browser's location bar:\n\n"
    . $confirmurl . "\n\n"
    ."You have 48 hours to confirm the new address. If you do not want to change "
    ."the address anymore, you can just ignore this email.\n\n"
   ."Thanks!\n"
   ."-- ".APP_PRETTYNAME." Add-ons Staff";
endif;
?>