<?php
/*
CREATIVE COMMONS - Attribution-No Derivative Works 3.0 Germany:
- You may not alter, transform, or build upon this work.
- Dieses Werk darf nicht bearbeitet oder in anderer Weise verändert werden.
*/
if ( !loggedIn() ) { echo $L_003; }
else
{
// Inhalt hier einfügen
foreach ($_POST as $key => $value)
{
if (get_magic_quotes_gpc()) $$key = stripslashes($value);
else $$key = $value;
}
if (!isset($_POST['SetupBackendUseCache'])) { $SetupBackendUseCache=0; }
// HTML- und PHP-Tags entfernen
$Refreshtime = strip_tags($Refreshtime);
$ExportSeparator = strip_tags($ExportSeparator);
$UserMaximumInactivityTime = strip_tags($UserMaximumInactivityTime);
$SetupBackendDateFormat = strip_tags($SetupBackendDateFormat);
$SetupBackendTimeFormat = strip_tags($SetupBackendTimeFormat);
$SetupFrontendCssFile = strip_tags($SetupFrontendCssFile);
if ( editSetupGeneral ( $Refreshtime,
$ExportSeparator,
$UserMaximumInactivityTime,
$SetupBackendDateFormat,
$SetupBackendTimeFormat,
$SetupBackendUseCache,
$FrontendLanguage,
$SetupFrontendCssFile))
{
echo $L_057.'<br />';
}
else
{
echo $L_058.'<br />';
}
// Inhalt zuende
}
?>