コード例 #1
0
ファイル: computer.passwd.php プロジェクト: BillTheBest/1.6.x
function save_internal_password()
{
    $uid = $_GET["uid"];
    if (strpos($uid, '$') == 0) {
        $uid = $uid . '$';
    }
    $computer = new computers($uid);
    $computer->ComputerChangePassword($_GET["bdc_password"]);
}