104105106107108109110111112113114
if (checkbox == null) { blog.setProperty(name, "false"); } try { blog.storeProperties(); blog.info("Blog properties saved."); } catch (BlogServiceException e) { throw new ServletException(e); }
100101102103104105106107108109110
blog.setProperty(key, builder.toString()); } } try { blog.storeProperties(); blog.getPluginProperties().store(); } catch (BlogServiceException e) { throw new ServletException(e); } }
102103104105106107108109110111112
} } blog.setProperty(Blog.BLOG_READERS_KEY, blogReaders.toString()); try { blog.storeProperties(); blog.info("Blog security settings saved."); } catch (BlogServiceException e) { throw new ServletException(e); }