Files
Wrench-ApiTester/public/wrenchboard/profilepasschange.php
T
dev-chiefworks 7d830711b3 New files
2023-04-30 20:25:08 -04:00

19 lines
450 B
PHP

<?php
include_once('def.php');
include 'session_read.php';
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$data = array(
"member_id" => $member_id ,
"sessionid" => $session_id ,
"uid" => $uid,
"current_pass" => "valid_current_pass",
"new_pass" => "valid_new_pass",
'action'=>WRENCHBOARD_PROFILE_RESETPASS
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out,"profilepasschange");
?>