Changeset 10719


Ignore:
Timestamp:
02/17/11 13:45:45 (2 years ago)
Author:
CrawfordCurrie
Message:

Item10364: correct handling of header row

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin/TableRow.pm

    r10712 r10719  
    196196 
    197197    if ($opts->{with_controls} && !$opts->{require_js}) { 
     198        # Generate the controls column 
    198199        if ($opts->{for_edit}) { 
    199200            if ($buttons_right) { 
     
    217218                    $addAnchor = 0; 
    218219                } 
    219                 push( @cols, " *$text* " ); 
     220                if ($buttons_right) { 
     221                    push( @cols, " *$text* " ); 
     222                } else { 
     223                    unshift( @cols, " *$text* " ); 
     224                } 
    220225            } 
    221226            else { 
Note: See TracChangeset for help on using the changeset viewer.