Merge branch 'master' into hendrik-testing

This commit is contained in:
Hendrik
2017-01-20 12:14:17 +01:00
37 changed files with 812 additions and 652 deletions

View File

@@ -99,8 +99,15 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
changeMultipleGroupStatusByID($db, $_POST["checkbox-group"], $_POST["groupbatchactions"]);
}
<<<<<<< HEAD
if (isset($_POST["pageselect"])) {
$currentpage = $_POST["pageselect"];
=======
if (!empty($_POST["actions"]) && !empty($_POST["userID"])) {
changeUserStatusByID($_POST["userID"], $_POST["actions"]);
} elseif (!empty($_POST["actions"]) && !empty($_POST["groupID"])) {
changeGroupStatusByID($_POST["groupID"], $_POST["actions"]);
>>>>>>> master
}
}