Files
Babydatenbank/web/naviox/editors/organizationUrlEditor.jsp
Socrates 9ed0f2a056 test
2020-05-26 10:29:34 +02:00

14 lines
379 B
Plaintext

<%@ page import="org.openxava.util.Is" %>
<%
String propertyKey = request.getParameter("propertyKey");
String fvalue = (String) request.getAttribute(propertyKey + ".fvalue");
if (!Is.emptyString(fvalue)) {
String url = request.getContextPath() + fvalue;
%>
<a href="<%=url%>"><%=url%></a>
<%
}
%>
<input type="hidden" name="<%=propertyKey%>" value="<%=fvalue%>">