Last modified: 2008-06-10 17:25:09 UTC
Code: {{padleft:{{{1}}}|10|X}} should return: XXX{{{1}}} (if first parameter of current template is not specified) or for example: XXXXXXX123 (if first parameter of current template is 123) but now it returns: XXX10 We have similar situation if we ask for second argument.
When the parser function splits the arguments, it's clobbering its own arg list. Calling it as {{padleft:{{{1}}}|10|X|1={{{1}}}}} Should restore the clobbered arg you want, and give the expected result. Basically the same issue as bug 5678.
Fixed in the new parser.