Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.8.1
-
Component/s: Web - Templates & Resources
-
Labels:None
-
Difficulty:Trivial
-
Similar issues:
Description
When creating a new page or space with special characters in the name, the special characters are not escaped, leading to a corrupted page title.
The problem is in the create.vm template in line 29, which reads
#set($redirectparams = "template=${etemplate}&parent=${eparent}&title=$title")
but should be
#set($redirectparams = "template=${etemplate}&parent=${eparent}&title=$etitle")
The variable etitle bears the encoded page title, but it is not used.