Details
- 
    Type:Bug 
- 
    Status: Closed
- 
    Priority:Major 
- 
    Resolution: Fixed
- 
    Affects Version/s: unspecified
- 
    Fix Version/s: None
- 
    Component/s: Content
- 
    Labels:None
- 
    Environment:Operating System: Linux 
 Platform: PC
- 
        Bugzilla Id:3089
Description
Currently, all templates have the following meta tags:
<meta name="description" value="${metadata.description1} ${metadata.description2}">
<meta name="keywords" value="$!
'value' is not a valid attribute for a meta tag. The only valid attributes for
meta tags are 'name' and 'content'. They need to be changed to:
<meta name="description" content="${metadata.description1}
${metadata.description2}">
<meta name="keywords" content="$!{metadata.keywords}
">