From 70ac0fad278c1b701df7c3613d27c6b76104dfbd Mon Sep 17 00:00:00 2001 From: Barijaona Ramaholimihaso Date: Thu, 27 Sep 2007 11:25:21 +0000 Subject: [PATCH 1/1] Allows default interpolate routine to handle multiple :: in variable names. --- blosxom.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; -- 2.30.2