diff options
Diffstat (limited to 'include/contacts-edit.php')
-rw-r--r-- | include/contacts-edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/contacts-edit.php b/include/contacts-edit.php index ac924a9..ead27d9 100644 --- a/include/contacts-edit.php +++ b/include/contacts-edit.php @@ -20,10 +20,10 @@ require_once('./conf.php'); require_once('./login-ajax.php'); -$response = new response(); +$response = new Response(); try { - $contact = new contact($_pdo, $_REQUEST['pk']); + $contact = new Contact($_pdo, $_REQUEST['pk']); $name = explode('-', $_REQUEST['name']); $what_to_edit = $name[count($name) - 1]; |