xmlrpc: stop pushing nextuid and nextgid as these don't exist anymore.

This commit is contained in:
Ad Schellevis 2025-03-04 09:45:05 +01:00
parent 03577ba3ca
commit 8c63dad2f3

View File

@ -233,15 +233,6 @@ function carp_sync_xml($url, $username, $password, $sections, $debug)
}
}
// when syncing users, send last used uid/gid over
if (in_array('system.user', $sections)) {
if (!isset($transport_data['system'])) {
$transport_data['system'] = array();
}
$transport_data['system']['nextuid'] = $config['system']['nextuid'];
$transport_data['system']['nextgid'] = $config['system']['nextgid'];
}
$client = new SimpleXMLRPC_Client($url,240);
$client->debug = $debug;
$client->setCredentials($username, $password);