Skip to content

Commit

Permalink
Merge pull request #41 from Wallonman/initial
Browse files Browse the repository at this point in the history
Validation disabled in the Import process
  • Loading branch information
leedavi committed Feb 20, 2019
2 parents d9bb7f1 + 32384db commit c8548d9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Admin/Import.ascx.cs
Expand Up @@ -122,7 +122,13 @@ protected void CtrlItemCommand(object source, RepeaterCommandEventArgs e)
DoImport(nbi);
DoImportImages(nbi);
DoImportDocs(nbi);
Validate();

/*
* Validation removed as it impact the performance of the import.
* A validation can be done by the store manager through the UI Admin Tools after the import.
*/
// Validate();

NBrightBuyUtils.RemoveModCachePortalWide(PortalId);
NBrightBuyUtils.SetNotfiyMessage(ModuleId, "completed", NotifyCode.ok);
Response.Redirect(NBrightBuyUtils.AdminUrl(TabId, param), true);
Expand Down

0 comments on commit c8548d9

Please sign in to comment.