[Rt-commit] rt branch, 4.0-trunk, updated. rt-4.0.12-6-g268e0ba

Thomas Sibley trs at bestpractical.com
Fri May 3 15:19:29 EDT 2013


The branch, 4.0-trunk has been updated
       via  268e0baa881c3bf9e4ea7484e302a5d76baf41ec (commit)
      from  da1a67bfea314349a5d0a5bf7deb2bb446cfad4f (commit)

Summary of changes:
 share/html/Elements/EditCustomFieldBinary | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

- Log -----------------------------------------------------------------
commit 268e0baa881c3bf9e4ea7484e302a5d76baf41ec
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Fri May 3 11:55:37 2013 -0700

    Combine two HTML class attributes into one
    
    Chrome, for example, only respects the first attribute in the source
    when there are multiple conflicting attributes.

diff --git a/share/html/Elements/EditCustomFieldBinary b/share/html/Elements/EditCustomFieldBinary
index 4700b5d..f9719b7 100644
--- a/share/html/Elements/EditCustomFieldBinary
+++ b/share/html/Elements/EditCustomFieldBinary
@@ -47,7 +47,7 @@
 %# END BPS TAGGED BLOCK }}}
 % while ( $Values and my $value = $Values->Next ) {
 %# XXX - let user download the file(s) here?
-<input type="checkbox" class="checkbox" name="<%$NamePrefix%><%$CustomField->Id%>-DeleteValueIds" class="CF-<%$CustomField->id%>-Edit" value="<% $value->Id %>" /><a href="<%RT->Config->Get('WebPath')%>/Download/CustomFieldValue/<% $value->Id %>/<% $value->Content %>"><% $value->Content %></a><br />
+<input type="checkbox" name="<%$NamePrefix%><%$CustomField->Id%>-DeleteValueIds" class="checkbox CF-<%$CustomField->id%>-Edit" value="<% $value->Id %>" /><a href="<%RT->Config->Get('WebPath')%>/Download/CustomFieldValue/<% $value->Id %>/<% $value->Content %>"><% $value->Content %></a><br />
 % }
 % if (!$MaxValues || !$Values || $Values->Count < $MaxValues) {
 <input type="file" name="<% $NamePrefix %><% $CustomField->Id %>-Upload" class="CF-<%$CustomField->id%>-Edit" />

-----------------------------------------------------------------------


More information about the Rt-commit mailing list