Changeset 2850

Show
Ignore:
Timestamp:
07/28/08 22:05:40 (4 months ago)
Author:
arvind
Message:

Rolling back MT::Revisable rename, mixin classes need to have the -able suffix. Perhaps MT::Versionable?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/feature-revision-histories/lib/MT/Entry.pm

    r2849 r2850  
    1010 
    1111use MT::Tag; # Holds MT::Taggable 
    12 use base qw( MT::Object MT::Taggable MT::Scorable MT::Versioned ); 
     12use base qw( MT::Object MT::Taggable MT::Scorable MT::Revisable ); 
    1313 
    1414use MT::Blog; 
  • branches/feature-revision-histories/lib/MT/Object.pm

    r2849 r2850  
    238238     
    239239    # Because of the inheritance of MT::Entry by MT::Page, we need to do this here 
    240     if($class->isa('MT::Versioned')) { 
     240    if($class->isa('MT::Revisable')) { 
    241241        $class->install_revisioning(); 
    242242    } 
  • branches/feature-revision-histories/lib/MT/Upgrade.pm

    r2849 r2850  
    17491749     
    17501750    # handle schema updates for revision table 
    1751     if ($class->isa('MT::Versioned')) { 
     1751    if ($class->isa('MT::Revisable')) { 
    17521752        $self->check_type($type . ':revision'); 
    17531753    }