Commit 7b4a6c0a authored by Dave Cridland's avatar Dave Cridland Committed by GitHub

Merge pull request #677 from akrherz/of266

OF-266 fix image paths for fastpath form UI
parents 15f19d80 7bebfd08
......@@ -44,6 +44,12 @@
Fastpath Plugin Changelog
</h1>
<p><b>4.4.1</b> -- November 18, 2016</p>
<ul>
<li>[<a href='https://issues.igniterealtime.org/browse/OF-266'>OF-266</a>] - Fastpath Form UI page in Admin Console doesnt show images.</li>
</ul>
<p><b>4.4.0</b> -- October 12, 2015</p>
<ul>
<li>[<a href='http://www.igniterealtime.org/issues/browse/OF-953'>OF-953</a>] - Updated JSP libraries.</li>
......
......@@ -5,8 +5,8 @@
<name>Fastpath Service</name>
<description>Support for managed queued chat requests, such as a support team might use.</description>
<author>Jive Software</author>
<version>4.4.0</version>
<date>10/12/2015</date>
<version>4.4.1</version>
<date>11/18/2016</date>
<minServerVersion>4.0.0</minServerVersion>
<databaseKey>fastpath</databaseKey>
<databaseVersion>0</databaseVersion>
......
......@@ -137,22 +137,22 @@
<td>
<% if(counter == 0 && size > 1) { %>
<a href="workgroup-dataform.jsp?wgID=<%=wgID%>&changePos=true&down=true&index=<%=counter%>">
<img src="images/arrow_down.gif" width="16" height="16" border="0"></a>
<img src="../images/arrow_down.gif" width="16" height="16" border="0"></a>
<img src="images/blank.gif" width="16" height="16">
<img src="../images/blank.gif" width="16" height="16">
<% } %>
<% if(counter > 0 && counter < size - 1){ %>
<a href="workgroup-dataform.jsp?wgID=<%=wgID%>&changePos=true&down=true&index=<%=counter%>"><img src="images/arrow_down.gif" width="16" height="16" border="0"></a>
<a href="workgroup-dataform.jsp?wgID=<%=wgID%>&changePos=true&down=true&index=<%=counter%>"><img src="../images/arrow_down.gif" width="16" height="16" border="0"></a>
<a href="workgroup-dataform.jsp?wgID=<%=wgID%>&changePos=true&up=true&index=<%=counter%>">
<img src="images/arrow_up.gif" width="16" height="16" border="0"></a>
<img src="../images/arrow_up.gif" width="16" height="16" border="0"></a>
<%}%>
<% if(counter > 0 && counter == size - 1){ %>
<img src="images/blank.gif" width="16" height="16">
<img src="../images/blank.gif" width="16" height="16">
<a href="workgroup-dataform.jsp?wgID=<%=wgID%>&changePos=true&up=true&index=<%=counter%>">
<img src="images/arrow_up.gif" width="16" height="16" border="0"></a>
<img src="../images/arrow_up.gif" width="16" height="16" border="0"></a>
<%}%>
<% if(size == 1){%>
......@@ -175,7 +175,7 @@
<% }%>
<td>
<a href="create-element.jsp?wgID=<%= wgID%>&edit=true&index=<%= counter%>"><img src="images/edit-16x16.gif" border="0" /></a></td>
<a href="create-element.jsp?wgID=<%= wgID%>&edit=true&index=<%= counter%>"><img src="../images/edit-16x16.gif" border="0" /></a></td>
<% } else {
if(element.getAnswerType() == WorkgroupForm.FormEnum.hidden){
String variableName = element.getVariable();
......@@ -197,7 +197,7 @@
<% }} %>
<td> <a href="workgroup-dataform.jsp?wgID=<%=wgID%>&delete=true&index=<%=counter%>"><img src="images/delete-16x16.gif" border="0"></a></td>
<td> <a href="workgroup-dataform.jsp?wgID=<%=wgID%>&delete=true&index=<%=counter%>"><img src="../images/delete-16x16.gif" border="0"></a></td>
</tr>
<% counter++; }%>
......@@ -240,4 +240,4 @@
</table>
</body>
</html>
\ No newline at end of file
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment