Changeset 42
- Timestamp:
- 01/05/06 20:45:17 (3 years ago)
- Files:
-
- blosxom_plugins/trunk/tagging (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
blosxom_plugins/trunk/tagging
r12 r42 1 1 # Blosxom Plugin: tagging 2 2 # Author: Gosuke Miyashita <miya@mizzy.org> 3 # Version: 200 5-06-233 # Version: 2006-01-05 4 4 # Blosxom Home/Docs/Licensing: http://www.blosxom.com/ 5 5 … … 8 8 use strict; 9 9 use CGI qw(param url); 10 use vars qw($list $current_tag $find_tag $tags_in_this );10 use vars qw($list $current_tag $find_tag $tags_in_this $tags_in_this_array); 11 11 use Storable qw(store retrieve); 12 12 use Jcode; … … 166 166 my @tags; 167 167 map { $_ = lc $_; $_ =~ s/^\s*//; $_ =~ s/\s*$//; push(@tags, $_); } split(/,/, $meta::tags); 168 $tags_in_this_array = \@tags; 168 169 foreach (sort @tags) { 169 170 my $encoded_tag = $_;
