Changeset 6569
- Timestamp:
- Oct 21, 2014, 1:56:42 PM (8 years ago)
- Location:
- branches/3.3-stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-stable/src/core/net/sf/basedb/core/Job.java
r6566 r6569 1063 1063 data.setJobAgentId(agent == null ? null : agent.getId()); 1064 1064 PluginDefinitionData plugin = data.getPluginDefinition(); 1065 data.setPluginVersion(plugin == null ? null :plugin.getVersionString());1065 if (plugin != null) data.setPluginVersion(plugin.getVersionString()); 1066 1066 } 1067 1067 -
branches/3.3-stable/www/views/jobs/view_job.jsp
r6510 r6569 239 239 <th>Plugin</th> 240 240 <td> 241 <base:propertyvalue item="<%=job%>" property="pluginDefinition.name" />241 <base:propertyvalue item="<%=job%>" property="pluginDefinition.name" nulltext="<i>External</i>"/> 242 242 <%=job.getPluginVersion() == null ? 243 "" : "( version" + HTML.encodeTags(job.getPluginVersion()) + ")"%>243 "" : "(" + HTML.encodeTags(job.getPluginVersion()) + ")"%> 244 244 </td> 245 245 </tr>
Note: See TracChangeset
for help on using the changeset viewer.