}
return "deleteClicked";
}
public String createTopic() {
Topic newTopic = new Topic();
newTopic.setTitle(_title);
newTopic.setContent(_content);
newTopic.setVisible(_visible);
newTopic.setPublishDate(_publishDate);
newTopic.setCategories(_categories);
try {
getBusinessController().createTopic(newTopic,_blog.getBlogID());
FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_INFO,MapacheUIUtils.getTranslation("info_topic_created",null),MapacheUIUtils.getTranslation("info_topic_created",null)));
_createMode = false;
} catch (MapacheException e) {