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:
le="color: #000000"><?php echo "<h5><strong><p>Please review the following information:</p></strong></h5>"; echo _US_USERNAME.": ".$myts->makeTboxData4Preview($uname)."<br />"; echo _US_EMAIL.": ".$myts->makeTboxData4Preview($email)."<br />"; //if ( $user_avatar != '' ) { // echo _US_AVATAR.": <img src='uploads/".$user_avatar."' alt='' /><br />"; //} if ( isset($url) && $url != '' ) { $url = formatURL($myts->makeTboxData4Preview($url)); echo _US_WEBSITE.": $url<br />"; } $f_timezone = ($timezone_offset < 0) ? 'GMT '.$timezone_offset : 'GMT +'.$timezone_offset; echo _US_TIMEZONE.": $f_timezone<br />"; echo "<form action='register.php' method='post'> <input type='hidden' name='uname' value='".$myts->makeTboxData4PreviewInForm($uname)."' /> <input type='hidden' name='email' value='".$myts->makeTboxData4PreviewInForm($email)."' />"; echo "<h5><strong><p><strong>After you have reviewed the above information to be correct, click the Finish button below to receive your confirmation e-mail.</strong></p> <p>IMPORTANT!!! - If you are using an online e-mail provider such as Yahoo! or MSN, you may need to check your BULK folder for your registration e-mail.</p></strong></h5>";
and this is how it looks:

Thnak you very much joe, I appreciate your help.