diff --git a/site/models/contact.php b/site/models/contact.php index 43ad9e0..554d91f 100644 --- a/site/models/contact.php +++ b/site/models/contact.php @@ -91,7 +91,7 @@ class Contact extends AppModel { // If the user has entered all new data, we need to // save that as a brand new entry. - if (!isset($item['id'])) { + if (!isset($item['id']) || $item['source'] == 'new') { $I = new $class(); $I->create(); if (!$I->save($item, false)) {