- Timestamp:
- 2008-07-02 14:13:03 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java
r2101 r2146 167 167 168 168 /** 169 * Get the advanced configu ation set.<br />169 * Get the advanced configuration set.<br /> 170 170 * By adding elements to this collection you can override the settings 171 171 * specified in the config.js file. … … 178 178 179 179 /** 180 * Set the advanced configu ation set.180 * Set the advanced configuration set. 181 181 * 182 182 * @param value … … 198 198 if (Utils.isEmpty(txt)) 199 199 return txt; 200 // TODO Strings are inefficent, use StringBuffer instead201 200 txt = txt.replaceAll("&", "&"); 202 201 txt = txt.replaceAll("<", "<"); … … 244 243 String configStr = config.getUrlParams(); 245 244 if (Utils.isNotEmpty(configStr)) 246 // configStr = configStr.substring(1);247 245 strEditor.append(createInputForVariable(null, instanceName.concat("___Config"), 248 246 configStr));