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

OO-539: check null for description

parent ec443cae
No related branches found
No related tags found
No related merge requests found
......@@ -19,9 +19,12 @@
<td><div class="b_form_element">$r.render("to_$confController.link.key")</div></td>
<td>$r.render("del_$confController.link.key")</td>
</tr>
<tr class="$css b_access_desc">
<td colspan="5">$confController.getLink().getOffer().getDescription()</td>
</tr>
#set($desc = $confController.getLink().getOffer().getDescription())
#if ($desc)
<tr class="$css b_access_desc">
<td colspan="5">$desc</td>
</tr>
#end
#end
</tbody>
</table>
......
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