This is exactly what I have in the showprofile.php as edited in notepad. I don't think there is any whitespace. . .other than that whitespace between my greyspace! HELP
<?
$ubbt_lang['RATING'] = "Rating";
$ubbt_lang['T_RATES'] = "Total Rates";
$ubbt_lang['RATE_USER'] = "Rate this user";
$ubbt_lang['STAR1'] = "1 star";
$ubbt_lang['STAR2'] = "2 stars";
$ubbt_lang['STAR3'] = "3 stars";
$ubbt_lang['STAR4'] = "4 stars";
$ubbt_lang['STAR5'] = "5 stars";
$ubbt_lang['DORATE'] = "Submit rating";
$ubbt_lang['YOURATED'] = "You rated this user a ";
$ubbt_lang['PROF_FOR'] = "Profile for";
$ubbt_lang['TEXT_NAME'] = "Name";
$ubbt_lang['USER_TITLE'] = "Title";
$ubbt_lang['TOTAL_POSTS'] = "Total Posts";
$ubbt_lang['TEXT_HOME'] = "Homepage";
$ubbt_lang['TEXT_OCCU'] = "Occupation";
$ubbt_lang['TEXT_HOBBY'] = "Hobbies";
$ubbt_lang['TEXT_LOC'] = "Location";
$ubbt_lang['TEXT_BIO'] = "Bio";
$ubbt_lang['PROF_ICQ'] = "ICQ Number";
$ubbt_lang['REGGED_ON'] = "Registered on";
$ubbt_lang['EDIT_T_U'] = "Edit this user";
$ubbt_lang['ADD_BOOK'] = "Add to address book";
$ubbt_lang['SHOW_ALL_P'] = "Show all user's posts";
$ubbt_lang['NO_LONGER'] = "This user is no longer in our database.";
// ---------------------
// Grab this user's info
$userob = new user;
$thisuser = $userob -> authenticate("U_PictureView,U_Number,U_TimeOffset,U_TimeFormat,U_Ignored,U_OC_Userid");
isset($thisuser['U_PictureView']) && $picview = $thisuser['U_PictureView'];
isset($thisuser['U_TimeOffset']) && $toffset = $thisuser['U_TimeOffset'];
!isset($thisuser['U_TimeFormat']) && $thisuser['U_TimeFormat'] = $theme['timeformat'];
!isset($thisuser['U_Ignored']) && $thisuser['U_Ignored'] = "";
$Username = $thisuser['U_Username'];
$html = new html;
// Block them if they aren't logged in.
if (!$thisuser['U_Username']) {
$html -> not_right ("You must be logged in to view profiles.",$Cat);
}
?>