Show
Ignore:
Timestamp:
02/14/08 21:09:26 (22 months ago)
Author:
bchoate
Message:

Broke CMS into smaller parts to reduce memory footprint and group code into logical parts. BugId:58666

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-30/lib/MT/Core.pm

    r1333 r1369  
    521521                list_actions    => sub { MT->app->core_list_actions(@_) }, 
    522522                list_filters    => sub { MT->app->core_list_filters(@_) }, 
    523                 search_apis     => sub { MT->app->core_search_apis(@_) }, 
     523                search_apis     => sub { 
     524                    require MT::CMS::Search; 
     525                    return MT::CMS::Search::core_search_apis(MT->app, @_); 
     526                }, 
    524527                menus           => sub { MT->app->core_menus() }, 
    525528                methods         => sub { MT->app->core_methods() },