X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom.git;a=blobdiff_plain;f=blosxom.cgi;h=78ad2ffcac7160a5cc41a5a1f62fc9c250ad19a3;hp=e57ab4bd01bad5ce1fa117a1dc7f9b4d4bd1fbf3;hb=70ac0fad278c1b701df7c3613d27c6b76104dfbd;hpb=3965f3e5f1d327b951bf946120d5598a594d4b8c diff --git a/blosxom.cgi b/blosxom.cgi index e57ab4b..78ad2ff 100755 --- a/blosxom.cgi +++ b/blosxom.cgi @@ -457,7 +457,7 @@ else { my $content_type = ( &$template( $path_info, 'content_type', $flavour ) ); $content_type =~ s!\n.*!!s; - $content_type =~ s/(\$\w+(?:::)?\w*)/"defined $1 ? $1 : ''"/gee; + $content_type =~ s/(\$\w+(?:::\w+)*)/"defined $1 ? $1 : ''"/gee; $header = { -type => $content_type }; print generate( 'dynamic', $path_info, @@ -506,7 +506,7 @@ sub generate { package blosxom; my $template = shift; - $template =~ s/(\$\w+(?:::)?\w*)/"defined $1 ? $1 : ''"/gee; + $template =~ s/(\$\w+(?:::\w+)*)/"defined $1 ? $1 : ''"/gee; return $template; };