diff options
| author | Camil Staps | 2016-07-27 16:48:53 +0200 |
|---|---|---|
| committer | Camil Staps | 2016-07-27 17:08:12 +0200 |
| commit | 21455bfd1004c4a3153050ac5995b8dc680c2042 (patch) | |
| tree | b448f9d94cd9b6addb6d6b391001c418243cc13d /include/clients-edit.php | |
| parent | Removed error reporting (diff) | |
Class names start with a capital
Diffstat (limited to 'include/clients-edit.php')
| -rw-r--r-- | include/clients-edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clients-edit.php b/include/clients-edit.php index 3d92d06..00961aa 100644 --- a/include/clients-edit.php +++ b/include/clients-edit.php @@ -20,10 +20,10 @@ require_once('./conf.php'); require_once('./login-ajax.php'); -$response = new response(); +$response = new Response(); try { - $client = new client($_pdo, $_REQUEST['pk']); + $client = new Client($_pdo, $_REQUEST['pk']); if ($client->setName($_REQUEST['value'])) { $response->success = true; } else { |
