Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.0
-
Component/s: Administration, Web - Templates & Resources
-
Labels:None
-
Development Priority:High
-
Difficulty:Trivial
-
Similar issues:
Description
Currently, $obfuscateEmail variable is hard coded in page XWiki.XWikiUserProfileSheet. We should set a default value after we have checked that it is not yet set. I propose to update that page from :
#set($obfuscateEmail = true)
to
#if("$!{obfuscateEmail}" == '') #set($obfuscateEmail = true) #end
Tested locally on a 3.0-M3 with this change and updating xwikivars.vm, works as expected.