8
Success!!!
The file you told be to look for was incorrect (registration.php), but the code snippet that you gave was exactly right. I looked for it in the register.php file. My guess is that registration.php is a file found in an earlier (pre 2.0.9.2) version.
Anyhow this is what the code looke like after I finished with it.
Beginning on line 138 of register.php:
echo "Please review the following information:
";
echo _US_USERNAME.": ".$myts->makeTboxData4Preview($uname)."
";
echo _US_EMAIL.": ".$myts->makeTboxData4Preview($email)."
";
//if ( $user_avatar != '' ) {
// echo _US_AVATAR.":
";
//}
if ( isset($url) && $url != '' ) {
$url = formatURL($myts->makeTboxData4Preview($url));
echo _US_WEBSITE.": $url
";
}
$f_timezone = ($timezone_offset < 0) ? 'GMT '.$timezone_offset : 'GMT +'.$timezone_offset;
echo _US_TIMEZONE.": $f_timezone
";
echo "
and this is how it looks:
Thnak you very much joe, I appreciate your help.