diff --git a/ag/char.php b/ag/char.php index 3b759cc..bfb0ba1 100644 --- a/ag/char.php +++ b/ag/char.php @@ -78,8 +78,8 @@ function handleErstelleCharRequestOfTestUser($user, $type, $name, $bild, $lvl, $ if(!is_numeric($hp) || !is_numeric($mp) || !is_numeric($str) || !is_numeric($def) || !is_numeric($spd) || !is_numeric($end) || !is_numeric($lck)) { displayErrorMessage(NULL,'Ungültige Eingabe bei den Stats!',displayHistoryBackLink()); return; - } - if($lp <= ($hp+$mp+$str+$def+$spd+$end+$lck)) { + } + if($lp < ($hp+$mp+$str+$def+$spd+$end+$lck)) { displayErrorMessage(NULL,'Es wurden mehr Lernpunkte ausgegeben als eigentlich möglich!',displayHistoryBackLink()); return; } diff --git a/ag/gm/include/user.inc.php b/ag/gm/include/user.inc.php index cbed3ca..9432de7 100644 --- a/ag/gm/include/user.inc.php +++ b/ag/gm/include/user.inc.php @@ -31,7 +31,6 @@ function getOtherUserGroups($user) { $groups[$i] = array("gruppen_id" => $result['gruppen_id'], "gruppen_name" => $result['gruppen_name']); $i++; } - return $groups; } @@ -55,7 +54,7 @@ function displayUserGroups($action, $name, $ugname, $delete, $add) {