Changeset 2850
- Timestamp:
- 07/28/08 22:05:40 (4 months ago)
- Files:
-
- branches/feature-revision-histories/lib/MT/Entry.pm (modified) (1 diff)
- branches/feature-revision-histories/lib/MT/Object.pm (modified) (1 diff)
- branches/feature-revision-histories/lib/MT/Revisable.pm (copied) (copied from branches/feature-revision-histories/lib/MT/Revisable.pm)
- branches/feature-revision-histories/lib/MT/Upgrade.pm (modified) (1 diff)
- branches/feature-revision-histories/lib/MT/Versioned.pm (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/feature-revision-histories/lib/MT/Entry.pm
r2849 r2850 10 10 11 11 use MT::Tag; # Holds MT::Taggable 12 use base qw( MT::Object MT::Taggable MT::Scorable MT:: Versioned);12 use base qw( MT::Object MT::Taggable MT::Scorable MT::Revisable ); 13 13 14 14 use MT::Blog; branches/feature-revision-histories/lib/MT/Object.pm
r2849 r2850 238 238 239 239 # 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')) { 241 241 $class->install_revisioning(); 242 242 } branches/feature-revision-histories/lib/MT/Upgrade.pm
r2849 r2850 1749 1749 1750 1750 # handle schema updates for revision table 1751 if ($class->isa('MT:: Versioned')) {1751 if ($class->isa('MT::Revisable')) { 1752 1752 $self->check_type($type . ':revision'); 1753 1753 }
