This is on 2.0.3 But didn't saw the group for it.
In userdata.php on line 197 the admin-panel is made for
only the frames. Not when you have ezcontents in tables.
Also, in comparisment with the other functions the
first two if's seem to be turned around. With this
substitute I get on frames as on no-frames the link to
the admin-page below the menu:
if (($EZ_SESSION_VARS["PasswordCookie"] != '') &&
($EZ_SESSION_VARS["UserGroup"] ==
$GLOBALS["gsAdminPrivGroup"])) {
if (($GLOBALS["gsUseFrames"] == 'Y') &&
($EZ_SESSION_VARS["noframesbrowser"] != True)) {
opentable();
echo '<a
href="'.BuildLink($GLOBALS["admin_home"].'index.php').'"
target="_top"';
echo
BuildLinkMouseOver($GLOBALS["tAdminFunctions"]).'>'.$GLOBALS["tAdminFunctions"].'</a><br
/>';
closetable();
} else
opentable();
echo '<a
href="'.BuildLink($GLOBALS["admin_home"].'index.php').'"';
echo
BuildLinkMouseOver($GLOBALS["tAdminFunctions"]).'>'.$GLOBALS["tAdminFunctions"].'</a><br
/>';
closetable();
}
} // function adminfunctions()