I have a persistent issue with a default tag in a "show on select" form.
<div id="test-a">
{{#show: MyPage | ?MyAttribute}}
{|class="formtable"
! A:
| {{{field|input type = text|default= {{#show SomePage | ?SomeAttribute}} }}}
|-
! B:
| {{{field|input type = text|default= {{#show SomeOtherPage | ?SomeOtherAttribute}} }}}
|}
</div>
Instead of evaluating the #show commands, the fields get defaulted to "{{#show SomePage | ?SomeAttribute}}" and "{{#show SomeOtherPage | ?SomeOtherAttribute}}".
How do I force MediaWiki to evaluated the #show function no matter what?