Replaced a hard-coded string that was missed in previous commit

This commit is contained in:
str4d
2012-07-21 10:22:12 +00:00
parent 5d5a3b80e5
commit b17af505c2

View File

@ -30,7 +30,7 @@ public class ConfigUIHandler extends FormHandler {
props.put(CSSHelper.PROP_THEME_NAME, null);
else
props.put(CSSHelper.PROP_THEME_NAME, _config);
ok = _context.writeConfigFile("themes.config", props);
ok = _context.writeConfigFile(CSSHelper.THEME_CONFIG_FILE, props);
if (ok) {
if (!oldTheme.equals(_config))
addFormNotice(_("Theme change saved.") +