Changeset 1919

Show
Ignore:
Timestamp:
04/16/08 01:03:22 (4 months ago)
Author:
auno
Message:

Need $app parameter.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-35/lib/MT/CMS/Comment.pm

    r1866 r1919  
    727727    my @commenters = map_comment_to_commenter( $app, \@comments ); 
    728728    $app->param( 'action', 'trust' ); 
    729     save_commenter_perm( \@commenters ); 
     729    save_commenter_perm( $app, \@commenters ); 
    730730} 
    731731 
     
    735735    my @commenters = map_comment_to_commenter( $app, \@comments ); 
    736736    $app->param( 'action', 'untrust' ); 
    737     save_commenter_perm( \@commenters ); 
     737    save_commenter_perm( $app, \@commenters ); 
    738738} 
    739739 
     
    743743    my @commenters = map_comment_to_commenter( $app, \@comments ); 
    744744    $app->param( 'action', 'ban' ); 
    745     save_commenter_perm( \@commenters ); 
     745    save_commenter_perm( $app, \@commenters ); 
    746746} 
    747747 
     
    751751    my @commenters = map_comment_to_commenter( $app, \@comments ); 
    752752    $app->param( 'action', 'unban' ); 
    753     save_commenter_perm( \@commenters ); 
     753    save_commenter_perm( $app, \@commenters ); 
    754754} 
    755755