-
Type:
Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.1.X, Master
-
Fix Version/s: 7.1.10 DXP FP16, 7.1.X, 7.2.10 DXP FP4, 7.2.X, 7.2.1 CE GA2, 7.3.10 DXP GA1, Master
-
Component/s: SEO Tools > OpenGraph tags, ~[Archived] WCM
-
Branch Version/s:7.2.x, 7.1.x
-
Backported to Branch:Committed
-
Story Points:1
-
Fix Priority:3
-
Sprint:035 - Clefairy
-
Git Pull Request:
Steps to reproduce:
- Add an Asset Publisher in the home page.
- Go to 'Configuration' in the Asset Publisher and set it as the default Asset Publisher for the page.
- Create a new web content.
- Add some text to the 'Summary" field. Ex: 'This is the summary'
- Fill the 'Friendly URL' field. Ex: 'my-wc'
- Set the Display Page to reference 'Home Page'
- Then, in a browser use the friendly URL. Ex: http://localhost:8080/web/guest/-/my-wc
- Finally, check the HTML code of the page, locating '<head>' section and '<meta content="..." name="description">' inside. For example, using DevTools.
Expected behavior:
Following HTML source if generated:
<meta content="This is the summary" name="description" >
Observed behavior:
Following HTML source if generated: please note that summary is twice and one of them is between <p> tags.
<meta content="<p>This is the summary</p> This is the summary" name="description" >