[Rt-commit] rt branch, 4.2/more-about-requestor-generalization, updated. rt-4.1.6-328-g0456ec8

Thomas Sibley trs at bestpractical.com
Thu Mar 7 22:31:20 EST 2013


The branch, 4.2/more-about-requestor-generalization has been updated
       via  0456ec8f77d32b0dc62590e896a96adffb45b10d (commit)
      from  bb199d632885d90b1f3e528cb80fe017773d1098 (commit)

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

- Log -----------------------------------------------------------------
commit 0456ec8f77d32b0dc62590e896a96adffb45b10d
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Thu Mar 7 19:29:44 2013 -0800

    Don't introduce spaces in complex formats
    
    The various parts of a single column in a format should be concatenated
    without spaces to maintain accuracy with the format itself and avoid
    problems with links.

diff --git a/share/html/Elements/ShowRecord b/share/html/Elements/ShowRecord
index 3e98b16..b104cae 100644
--- a/share/html/Elements/ShowRecord
+++ b/share/html/Elements/ShowRecord
@@ -93,7 +93,7 @@ for my $column (@columns) {
     }
     @out = grep { defined $_ and length $_ } @out;
 </%perl>
-<span class="value"><% join(' ', at out) |n %></span>
+<span class="value"><% join('', at out) |n %></span>
 </div>
 % }
 </div>

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


More information about the Rt-commit mailing list