Changeset 1830

Show
Ignore:
Timestamp:
04/10/08 02:59:01 (8 months ago)
Author:
fumiakiy
Message:

Tab to whitespaces.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-34/lib/MT/Template/ContextHandlers.pm

    r1827 r1830  
    226226            TopLevelFolder => \&_hdlr_top_level_folder, 
    227227 
    228                        # Pager handlers 
     228            # Pager handlers 
    229229            'IfMoreResults?' => sub { 
    230230                my $limit = $_[0]->stash('limit'); 
     
    548548            AuthorRank => \&_hdlr_author_rank, 
    549549 
    550                        # Pager related handlers 
     550            # Pager related handlers 
    551551            PagerLink => \&_hdlr_pager_link, 
    552552            NextLink => \&_hdlr_next_link, 
     
    80248024    my %arg; 
    80258025    foreach (keys %$args) { 
    8026        $arg{$_} = $args->{$_}; 
     8026    $arg{$_} = $args->{$_}; 
    80278027    } 
    80288028    $arg{Width} = $args->{width} if $args->{width}; 
     
    88298829    $offset = ( $page - 1 ) * $limit; 
    88308830 
    8831        my $link = $ctx->context_script($args); 
    8832  
    8833        if ( $link ) { 
    8834                if ( index($link, '?') > 0 ) { 
    8835                        $link .= '&'; 
    8836                
    8837                else { 
    8838                        $link .= '?'; 
    8839                
    8840        
     8831    my $link = $ctx->context_script($args); 
     8832 
     8833    if ( $link ) { 
     8834        if ( index($link, '?') > 0 ) { 
     8835            $link .= '&'; 
     8836       
     8837        else { 
     8838            $link .= '?'; 
     8839       
     8840   
    88418841    $link .= "limit=$limit"; 
    88428842    $link .= "&offset=$offset" if $offset;