Changeset 198

Show
Ignore:
Timestamp:
05/12/06 01:26:43 (2 years ago)
Author:
ogawa
Message:

Change url for doc_link.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tagwire/trunk/tagwire.pl

    r197 r198  
    2828        name => 'Tagwire Plugin', 
    2929        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', 
    3131        author_name => 'Hirotaka Ogawa', 
    3232        author_link => 'http://profile.typekey.com/ogawa/', 
     
    654654 
    6556551; 
     656 
     657package MT::Plugin::Tagwire::Cache; 
     658use strict; 
     659use MT::Request; 
     660use vars qw($cache); 
     661 
     662sub new { 
     663    $cache ||= MT::Request->instance; 
     664}