From 6a623a542611768259e90ccdc53c5a95a96ea8bd Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 13 Aug 2013 05:17:13 -0400 Subject: [PATCH] Fixed client_updat remoting example. --- remoting_client/examples/client_update.php | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/remoting_client/examples/client_update.php b/remoting_client/examples/client_update.php index 82f8797..e884378 100644 --- a/remoting_client/examples/client_update.php +++ b/remoting_client/examples/client_update.php @@ -16,17 +16,20 @@ //* Parameters $reseller_id = 1; - $c_id = 1; + $client_id = 1; //* Get the client record - $client_record = $client->client_get($session_id, $reseller_id); + $client_record = $client->client_get($session_id, $client_id); //* Change parameters $client_record['country'] = 'de'; $client_record['username'] = 'mguy'; $client_record['contact_name'] = 'brush'; + //* We set the client password to a empty string as we do not want to change it. + $client_record['password'] = ''; + $affected_rows = $client->client_update($session_id, $c_id, $reseller_id, $client_record); echo "Number of records that have been changed in the database: ".$affected_rows."<br>"; -- Gitblit v1.9.1