From d9bcf68e395d6156645a7974b1a992aa6e6c00aa Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Mon, 14 Oct 2013 08:57:25 -0400 Subject: [PATCH] Added missing empty directories from svn import --- 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