Changeset 198
- Timestamp:
- 05/12/06 01:26:43 (2 years ago)
- Files:
-
- tagwire/trunk/tagwire.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tagwire/trunk/tagwire.pl
r197 r198 28 28 name => 'Tagwire Plugin', 29 29 description => 'A plugin for listing and handling blog-wide tags and entry tags.', 30 doc_link => 'http://as-is.net/ hacks/2005/06/tagwire_plugin.html',30 doc_link => 'http://as-is.net/wiki/Tagwire_Plugin', 31 31 author_name => 'Hirotaka Ogawa', 32 32 author_link => 'http://profile.typekey.com/ogawa/', … … 654 654 655 655 1; 656 657 package MT::Plugin::Tagwire::Cache; 658 use strict; 659 use MT::Request; 660 use vars qw($cache); 661 662 sub new { 663 $cache ||= MT::Request->instance; 664 }
