* Console:

- Add link to jobs.jsp on configservice.jsp
      - Add plugin disableStop support
This commit is contained in:
zzz
2010-03-02 22:54:32 +00:00
parent ca9f174171
commit 26aebe6a0f
5 changed files with 19 additions and 6 deletions

View File

@ -146,9 +146,10 @@ public class ConfigClientsHelper extends HelperBase {
.append("<a href=\"").append(updateURL).append("\">").append(_("Update link")).append("</a><td>&nbsp;");
}
desc.append("</table>");
boolean enableStop = !Boolean.valueOf(appProps.getProperty("disableStop")).booleanValue();
renderForm(buf, app, app, false,
"true".equals(val), false, desc.toString(), false, false,
updateURL != null, true, true);
updateURL != null, enableStop, true);
}
}
buf.append("</table>\n");