Bug #103689
Updated by Georg Ringer 7 months ago
Given @<f:form.textfield placeholder="+43" />@ should output @<input placeholder="+43" type="text" name="" />@ but the @+@ is stripped away and just @<input placeholder="43" type="text" name="" />@ is given. works with <pre>+ <f:variable name="p">+43</f:variable> <f:form.textfield placeholder="{p}" /> </pre>