

Code: Alles auswählen
?>// BEGIN theme selection box hack
if( isset($HTTP_GET_VARS['theme']) || isset($HTTP_POST_VARS['theme']) )
{
$url_theme = intval($HTTP_GET_VARS['theme'] ? $HTTP_GET_VARS['theme'] : $HTTP_POST_VARS['theme']);
}
else
{
$url_theme = 0;
}
// END theme selection box hack
Code: Alles auswählen
// BEGIN theme selection box hack
if( isset($HTTP_GET_VARS['theme']) || isset($HTTP_POST_VARS['theme']) )
{
$url_theme = intval($HTTP_GET_VARS['theme'] ? $HTTP_GET_VARS['theme'] : $HTTP_POST_VARS['theme']);
}
else
{
$url_theme = 0;
}
// END theme selection box hack
?>
grüne klammer einfügenif ( $userdata['user_id'] != ANONYMOUS && $userdata['user_style'] > 0 )
{
if ( $theme = setup_style($userdata['user_style']) )
{
return;
}
}
// BEGIN theme selection box hack
global $url_theme;
if ( $url_theme > 0 )
{
if ( $theme = setup_style($url_theme) )
{
return;
}
}
// END theme selection box hack
}