Changeset 1763
- Timestamp:
- 04/03/08 22:46:20 (5 months ago)
- Files:
-
- branches/feature-narrow-tables/lib/MT/Asset.pm (modified) (1 diff)
- branches/feature-narrow-tables/lib/MT/Core.pm (modified) (2 diffs)
- branches/feature-narrow-tables/lib/MT/Entry.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/feature-narrow-tables/lib/MT/Asset.pm
r1564 r1763 41 41 }); 42 42 43 __PACKAGE__->install_meta({ 44 columns => [], 45 }); 46 43 47 require MT::Asset::Image; 44 48 require MT::Asset::Audio; branches/feature-narrow-tables/lib/MT/Core.pm
r1535 r1763 51 51 object_types => { 52 52 'entry' => 'MT::Entry', 53 'entry_meta' => 'MT::Entry::Meta', 53 54 'author' => 'MT::Author', 55 'author_meta' => 'MT::Author::Meta', 54 56 'asset' => 'MT::Asset', 57 'asset_meta' => 'MT::Asset::Meta', 55 58 'file' => 'MT::Asset', 56 59 'asset.image' => 'MT::Asset::Image', … … 69 72 'blog' => 'MT::Blog', 70 73 'template' => 'MT::Template', 74 'template_meta' => 'MT::Template::Meta', 71 75 'comment' => 'MT::Comment', 72 76 'notification' => 'MT::Notification', branches/feature-narrow-tables/lib/MT/Entry.pm
r1597 r1763 105 105 }); 106 106 107 __PACKAGE__->install_meta({ 108 columns => [], 109 }); 110 107 111 sub HOLD () { 1 } 108 112 sub RELEASE () { 2 }
