Changeset 4373 for trunk/www/common/plugin/select_plugin.jsp
- Timestamp:
- Jul 4, 2008, 11:37:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/common/plugin/select_plugin.jsp
r3679 r4373 122 122 lastSelectedPlugin = plugin; 123 123 lastSelectedConfig = null; 124 configOnChange(); 124 125 } 125 126 … … 129 130 var frm = document.forms['plugin']; 130 131 var configurationList = frm.pluginconfiguration_id; 132 if (configurationList.selectedIndex < 0) return; 131 133 var config = configurationList[configurationList.selectedIndex].configuration; 132 134 if (lastSelectedConfig) … … 168 170 String requiresConfig = pd.requiresConfiguration() ? "true" : "false"; 169 171 descriptions.append("<div id=\"description." + pd.getId() +"\" style=\"display: none;\">"); 170 descriptions.append(HTML.niceFormat("<b>" + pd.getName() + "</b>\n" + pd.getDescription()));172 descriptions.append(HTML.niceFormat("<b>" + pd.getName() + "</b>\n" + Values.getString(pd.getDescription()))); 171 173 descriptions.append("</div>"); 172 174 %> … … 178 180 { 179 181 descriptions.append("<div id=\"description.config." + pc.getId() + "\" style=\"display: none; padding-top: 6px;\">"); 180 descriptions.append(HTML.niceFormat("<b>" + pc.getName() + "</b>\n" + pc.getDescription()));182 descriptions.append(HTML.niceFormat("<b>" + pc.getName() + "</b>\n" +Values.getString(pc.getDescription()))); 181 183 descriptions.append("</div>"); 182 184 %>
Note: See TracChangeset
for help on using the changeset viewer.