your missing your $Cat variable which is developed for the sidebar in the sidebarpal.php in these lines
if ($Cat && !$configpal['forcepublic']) {
$CatArray = split(",",$Cat);
$CatSize = count($CatArray);
$catonly = "AND (Bo_Cat = '";
for ($i=0; $i<$CatSize; $i++) {
if (!preg_match("/[0-9]/",$CatArray[$i])) { continue; };
if ($i >= 1) {
$catonly .= "' OR Bo_Cat = '";
}
$catonly .= "$CatArray[$i]";
}
$catonly .= "')";
}
else {
$CatArray[0] = "0";
$CatSize = 1;
$catonly = "";
}
try turning force public on/off