Skip to content
Snippets Groups Projects
Commit fd8e47e5 authored by Prasad's avatar Prasad
Browse files

Fixed record exists skip for create through customer-portal.

parent aaba3dcc
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ class CustomerPortal_SaveRecord extends CustomerPortal_FetchRecord {
}
try {
if (vtws_recordExists($recordId)) {
if (!$recordId || vtws_recordExists($recordId)) {
// Retrieve or Initalize
if (!empty($recordId) && !$this->isNewRecordRequest($request)) {
$this->recordValues = vtws_retrieve($recordId, $current_user);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment