Skip to content
Snippets Groups Projects
Commit f9edf33d authored by srosse's avatar srosse
Browse files

OO-194: fix the null as map title, and remove span seen in notification e-mail

parent dfc8b8f6
No related branches found
No related tags found
No related merge requests found
......@@ -127,8 +127,7 @@ public class EPNotificationsHandler implements NotificationsHandler {
if (amap != null) {
sbTitle.append(amap.getTitle());
EPFrontendManager epMgr = CoreSpringFactory.getImpl(EPFrontendManager.class);
sbTitle.append(" <span class=\"o_ep_notif_owner\">(").append(epMgr.getFirstOwnerAsString(amap));
sbTitle.append(")</span> ");
sbTitle.append(" (").append(epMgr.getFirstOwnerAsString(amap)).append(")");
}
return new TitleItem(sbTitle.toString(), "o_EPStructuredMapTemplate_icon");
}
......
......@@ -151,6 +151,7 @@
</id>
<property name="sourceMapKey" column="fk_map_source_id" type="long"/>
<property name="title" column="title" type="string"/>
<many-to-one name="ownerGroup"
column="fk_ownergroup"
......
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