--- lib/TWiki/Contrib/DBCacheContrib.pm 2007-04-28 10:56:21.000000000 +0200 +++ lib/TWiki/Contrib/DBCacheContrib.pm 2007-09-27 12:27:19.000000000 +0200 @@ -163,6 +163,13 @@ } $prefs->add($pref); $tailMeta = 1; + } elsif ( $line =~ m/^%META:BASE{value="(.*)"}%/o ) { + my $base = new TWiki::Contrib::DBCacheContrib::Array(); + foreach (split(/,/,$1)) { + $base->add($_); + } + $meta->set('base',$base); + $tailMeta = 1; } else { if ($this->can('readTopicLine')) { $line = $this->readTopicLine( $topic, $meta, $line, $fh );