Hi Stefan,
This:
if (!$Display){
$html -> not_right("{$ubbt_lang['NO_PROF']} '$Username'",$Cat);
}
has become this:
if (!$CheckUser){
$html -> not_right("{$ubbt_lang['NO_PROF']} '$Username'",$Cat);
}
which needs to be changed to this:
if (!$CheckUser){
$html -> not_right("{$ubbt_lang['NO_PROF']} '$Username'",$Cat);
}
if ($showsidebar == "1") {
$sidebarselect[0] = "";
$sidebarselect[1] = "selected="selected"";
$sidebarselect[2] = "";
}
elseif ($showsidebar == "2") {
$sidebarselect[0] = "";
$sidebarselect[1] = "";
$sidebarselect[2] = "selected="selected"";
}
else {
$sidebarselect[0] = "selected="selected"";
$sidebarselect[1] = "";
$sidebarselect[2] = "";
}
Hope that helps.
