replace german comments

This commit is contained in:
Uwe Steinmann 2024-09-25 13:33:42 +02:00
parent 7717600973
commit 428a5ca3ec

View File

@ -35,7 +35,7 @@ if (!$user->isAdmin()) {
if (isset($_POST["action"])) $action=$_POST["action"]; if (isset($_POST["action"])) $action=$_POST["action"];
else $action=NULL; else $action=NULL;
//Neue Kategorie anlegen ----------------------------------------------------------------------------- // Add new category ---------------------------------------------------------
if ($action == "addcategory") { if ($action == "addcategory") {
/* Check if the form data comes from a trusted request */ /* Check if the form data comes from a trusted request */
@ -60,7 +60,7 @@ if ($action == "addcategory") {
add_log_line(".php&action=addcategory&categoryid=".$categoryid); add_log_line(".php&action=addcategory&categoryid=".$categoryid);
} }
//Kategorie löschen ---------------------------------------------------------------------------------- // Delete category ---------------------------------------------------------
else if ($action == "removecategory") { else if ($action == "removecategory") {
/* Check if the form data comes from a trusted request */ /* Check if the form data comes from a trusted request */
@ -86,7 +86,7 @@ else if ($action == "removecategory") {
$categoryid=-1; $categoryid=-1;
} }
//Kategorie bearbeiten: Neuer Name -------------------------------------------------------------------- // Edit category -----------------------------------------------------------
else if ($action == "editcategory") { else if ($action == "editcategory") {
/* Check if the form data comes from a trusted request */ /* Check if the form data comes from a trusted request */
@ -118,4 +118,3 @@ else {
header("Location:../out/out.Categories.php?categoryid=".$categoryid); header("Location:../out/out.Categories.php?categoryid=".$categoryid);
?>