Details
-
Bug
-
Resolution: Fixed
-
Minor
-
1.8.1
-
None
-
Trivial
-
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.