' . t('Search') . ' | ' . t('Sitemap') . '');
tpl_set_var('runtime', '');
//set up main template specific string
$sLoggedOut = '';
$sLoggedIn = "" . t('Logged in as') . ': {username} - ' . t('Logout') . '';
// target in Loginbox setzen
$target = basename($_SERVER['PHP_SELF']).'?';
// REQUEST-Variablen durchlaufen und an target anhaengen
$allowed = array('cacheid', 'userid', 'logid', 'desclang', 'descid');
reset ($_REQUEST);
while (list ($varname, $varvalue) = each ($_REQUEST))
{
if (in_array($varname, $allowed))
{
$target .= $varname.'='.$varvalue.'&';
}
}
if (mb_substr($target, -1) == '?' || mb_substr($target, -1) == '&') $target = mb_substr($target, 0, -1);
$sLoggedOut = mb_ereg_replace('{target}', $target, $sLoggedOut);
$functionsbox_start_tag = '';
$functionsbox_middle_tag = ' | ';
$functionsbox_end_tag = '';
$tpl_subtitle = '';
//other vars
$login_required = t('Sorry, the requested operation cannot be performed because you are not logged in with an user account.');
$dberrormsg = t('A database command could not be performed.');
$error_prefix = '';
$error_suffix = '';
?>