Project

General

Profile

Bug #103689

Updated by Georg Ringer 28 days 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> 

Back