You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/10/28 22:43:30 UTC

svn commit: r329290 - /maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm

Author: evenisse
Date: Fri Oct 28 13:43:28 2005
New Revision: 329290

URL: http://svn.apache.org/viewcvs?rev=329290&view=rev
Log:
[CONTINUUM-375] Fix checkbox for Safari

Modified:
    maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm?rev=329290&r1=329289&r2=329290&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm Fri Oct 28 13:43:28 2005
@@ -79,7 +79,7 @@
 #end
 
 #macro ( checkbox $element $elementData )
-<input type="checkbox" name="$element.id" #if( $elementData == "true" )checked#end/>
+<input type="checkbox" name="$element.id" #if( $elementData == "true" ) checked=checked #end/>
 #end
 
 #macro ( pulldown $element $elementData )