Fixed ignorecase for categories. Fixed logo file name.
This commit is contained in:
parent
c24cea3727
commit
eabdc733d6
3 changed files with 3 additions and 3 deletions
|
@ -82,7 +82,7 @@ public class Categories extends ArrayList<Category>
|
|||
{
|
||||
Category category = iterator.next();
|
||||
|
||||
if (category.getSoftwares().contains(softwareName))
|
||||
if (category.getSoftwares().containsIgnoreCase(softwareName))
|
||||
{
|
||||
ended = true;
|
||||
result = true;
|
||||
|
|
|
@ -109,7 +109,7 @@ public class Category
|
|||
{
|
||||
boolean result;
|
||||
|
||||
if (this.softwares.contains(service.getSoftwareName()))
|
||||
if (this.softwares.containsIgnoreCase(service.getSoftwareName()))
|
||||
{
|
||||
result = true;
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@ public class ServicePage
|
|||
|
||||
TagDataManager data = new TagDataManager();
|
||||
|
||||
data.setAttribute("serviceLogo", "src", organization.getTechnicalName() + "-" + service.getTechnicalName() + "-logo.png");
|
||||
data.setAttribute("serviceLogo", "src", service.getLogoFileName());
|
||||
|
||||
data.setEscapedContent("serviceName", service.getName());
|
||||
data.setAttribute("serviceName", "href", service.getWebsite());
|
||||
|
|
Loading…
Reference in a new issue