diff --git a/op/op.Categories.php b/op/op.Categories.php index 8cbea9575..5616028e8 100644 --- a/op/op.Categories.php +++ b/op/op.Categories.php @@ -35,7 +35,7 @@ if (!$user->isAdmin()) { if (isset($_POST["action"])) $action=$_POST["action"]; else $action=NULL; -//Neue Kategorie anlegen ----------------------------------------------------------------------------- +// Add new category --------------------------------------------------------- if ($action == "addcategory") { /* 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); } -//Kategorie löschen ---------------------------------------------------------------------------------- +// Delete category --------------------------------------------------------- else if ($action == "removecategory") { /* Check if the form data comes from a trusted request */ @@ -86,7 +86,7 @@ else if ($action == "removecategory") { $categoryid=-1; } -//Kategorie bearbeiten: Neuer Name -------------------------------------------------------------------- +// Edit category ----------------------------------------------------------- else if ($action == "editcategory") { /* Check if the form data comes from a trusted request */ @@ -118,4 +118,3 @@ else { header("Location:../out/out.Categories.php?categoryid=".$categoryid); -?>