sync
This commit is contained in:
@ -210,7 +210,7 @@ namespace IronIntel.Contractor.Site.Contact
|
||||
if (GetCurrentLoginSession() != null)
|
||||
{
|
||||
var s = Request.Form["ClientData"];
|
||||
s = HttpUtility.UrlDecode(s);
|
||||
s = HttpUtility.HtmlDecode(s);
|
||||
|
||||
var jss = CreateClient<JobSiteProvider>().GetJobSiteItems(SystemParams.CompanyID, "", false);
|
||||
List<JobSiteViewItem> list = new List<JobSiteViewItem>();
|
||||
@ -243,7 +243,7 @@ namespace IronIntel.Contractor.Site.Contact
|
||||
if (GetCurrentLoginSession() != null)
|
||||
{
|
||||
var contactid = Request.Form["ClientData"];
|
||||
contactid = HttpUtility.UrlDecode(contactid);
|
||||
contactid = HttpUtility.HtmlDecode(contactid);
|
||||
|
||||
items = ContactManagement.GetContactJobsitesByID(contactid);
|
||||
}
|
||||
|
Reference in New Issue
Block a user