diff --git a/pages/profile.php b/pages/profile.php index a08b944..f6d6e81 100644 --- a/pages/profile.php +++ b/pages/profile.php @@ -142,24 +142,6 @@ $HTML->ReplaceSeitenInhalt("%%IARBUTTONSTATE%%", 'disabled'); } - $statementLocalUsers = $RUNTIME['PDO']->prepare("SELECT FirstName,LastName FROM UserAccounts ORDER BY PrincipalID ASC"); - $statementLocalUsers->execute(); - - $allUsers = ""; - while($row = $statementLocalUsers->fetch()) - { - $name = '"'.$row['FirstName']." ".$row['LastName'].'"'; - - if($allUsers != "") - { - $allUsers .= ",".$name; - }else{ - $allUsers .= $name; - } - } - - $allUsers .= '," "'; - include_once 'app/OpenSim.php'; $opensim = new OpenSim();