- my %params = @_;
- my $content = $params{content};
-
- if ($pagesources{$params{page}} =~ /.txt$/) {
- encode_entities($content);
- my $finder = URI::Find->new(
- sub {
- my($uri, $orig_uri) = @_;
- return qq|<a href="$uri">$orig_uri</a>|;
- });
- $finder->find(\$content);
- $content = "<pre>" . $content . "</pre>";
- }
- return $content;
+ my %params = @_;
+ my $content = $params{content};
+
+ if (defined $pagesources{$params{page}} && $pagesources{$params{page}} =~ /\.txt$/) {
+ encode_entities($content);
+ if ($findurl) {
+ my $finder = URI::Find->new(sub {
+ my ($uri, $orig_uri) = @_;
+ return qq|<a href="$uri">$orig_uri</a>|;
+ });
+ $finder->find(\$content);
+ }
+ $content = "<pre>" . $content . "</pre>";
+ }
+
+ return $content;