This commit is contained in:
stubbfel
2013-11-27 13:50:41 +01:00
parent aa9e0f3636
commit 441af8e2a2

View File

@@ -220,10 +220,11 @@ namespace CampusAppWPortalLib8.Model.GeoDb
infoVal = infoVal.ToLower();
}
if (infoVal.Equals(queryString))
if (infoVal.Equals(queryString) || (infoVal.Replace(" ",string.Empty).Equals(queryString)))
{
return true;
}
}
}