Changeset 1467 for trunk/CleanSweep

Show
Ignore:
Timestamp:
02/19/09 18:11:52 (9 months ago)
Author:
breese
Message:

bug fixes

Location:
trunk/CleanSweep
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/CleanSweep/Makefile.PL

    r1461 r1467  
    33WriteMakefile( 
    44    NAME            => 'Clean Sweep', 
    5     VERSION         => '1.16', 
     5    VERSION         => '1.17', 
    66    DISTNAME        => 'CleanSweep', 
    77); 
  • trunk/CleanSweep/plugins/CleanSweep/config.yaml

    r1461 r1467  
    1 version: 1.16 
     1version: 1.17 
    22id: CleanSweep 
    33name: Clean Sweep 
  • trunk/CleanSweep/plugins/CleanSweep/lib/CleanSweep/CMS.pm

    r1461 r1467  
    6666        $log->increment(); 
    6767        $redirect = $config->{'404url'}; 
    68         my $path = $app->_guess_file_path($target); 
     68        my $path = _guess_file_path($app,$target); 
    6969        if ($path) { 
    7070            open NOTFOUND, $path; 
     
    385385} 
    386386 
     387sub plugin { 
     388    MT->component('CleanSweep'); 
     389} 
     390 
    3873911;