fix bug with nested <a> links
This commit is contained in:
parent
71e4b5d6e5
commit
17ed666fef
|
@ -488,7 +488,7 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
|
||||||
renderAddress(x, (Address) e);
|
renderAddress(x, (Address) e);
|
||||||
return true;
|
return true;
|
||||||
} else if (e instanceof ContactPoint) {
|
} else if (e instanceof ContactPoint) {
|
||||||
renderContactPoint(x, (ContactPoint) e);
|
displayContactPoint(x, (ContactPoint) e);
|
||||||
return true;
|
return true;
|
||||||
} else if (e instanceof Timing) {
|
} else if (e instanceof Timing) {
|
||||||
renderTiming(x, (Timing) e);
|
renderTiming(x, (Timing) e);
|
||||||
|
@ -530,7 +530,7 @@ public class ProfileDrivenRenderer extends ResourceRenderer {
|
||||||
boolean first = true;
|
boolean first = true;
|
||||||
for (ContactPoint c : cd.getTelecom()) {
|
for (ContactPoint c : cd.getTelecom()) {
|
||||||
if (first) first = false; else x.tx(",");
|
if (first) first = false; else x.tx(",");
|
||||||
renderContactPoint(x, c);
|
displayContactPoint(x, c);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else if (e instanceof Range) {
|
} else if (e instanceof Range) {
|
||||||
|
|
Loading…
Reference in New Issue