Source: blosxom Followup-For: Bug #702841 X-Debbugs-Cc: [email protected]
Invesitgating this as a Bug of the Day the cause appears to be due to it not doing recursive interpolation. At line 512 `$content_type` is set from the template HTTP header in blosxom.cgi in its __DATA__ template at line 787 to `text/html; charset=$blog_encoding` Then in line 792 it has: `html head <meta http-equiv="content-type" content="$content_type" >` so in function `generate()` the Interpolate sub at line 564 does replacement, sees `$content_type` and replaces it with that variable's value but does not then recurse the result to interpolate the included `$blog_encoding`

