diff --git a/modules/node/handler/cms_node_type_webform_manager.e b/modules/node/handler/cms_node_type_webform_manager.e index e3d8316..697e73b 100644 --- a/modules/node/handler/cms_node_type_webform_manager.e +++ b/modules/node/handler/cms_node_type_webform_manager.e @@ -236,17 +236,21 @@ feature -- Output end s.append ("") - if attached a_node.summary as l_summary then - s.append ("

") - if attached node_api.cms_api.format (a_node.format) as f then - s.append (f.formatted_output (l_summary)) - else - s.append (a_response.formats.default_format.formatted_output (l_summary)) - end - s.append ("

") + -- We don't show the summary on the detail page, since its just a short view of the full content. Otherwise we would write the same thing twice. + -- The usage of the summary is to give a short overview in the list of nodes or for the meta tag "description" - end +-- if attached a_node.summary as l_summary then +-- s.append ("

") +-- if attached node_api.cms_api.format (a_node.format) as f then +-- s.append (f.formatted_output (l_summary)) +-- else +-- s.append (a_response.formats.default_format.formatted_output (l_summary)) +-- end + +-- s.append ("

") + +-- end if attached a_node.content as l_content then s.append ("

")