Show
Ignore:
Timestamp:
03/12/09 05:46:37 (9 months ago)
Author:
fumiakiy
Message:

Merging frampton to trunk. "svn merge -r3083:3217 http://code.sixapart.com/svn/movabletype/branches/frampton ."

Also merged MT.pm, mt-check.cgi and mt.php.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/MT/CMS/Asset.pm

    r3082 r3529  
    5050        ); 
    5151        while (my $place = $place_iter->()) { 
    52             my $entry_class = $app->model($place->object_ds); 
     52            my $entry_class = $app->model($place->object_ds) or next; 
     53            next unless $entry_class->isa('MT::Entry'); 
    5354            my $entry = $entry_class->load($place->object_id) 
    5455                or next;