X-Git-Url: http://git.i-scream.org/?a=blobdiff_plain;f=cgi-bin%2Fcvslog.cgi;fp=cgi-bin%2Fcvslog.cgi;h=01ee2bfabf732c52705f42dcc9a11882550699b2;hb=dab5dbc565daac5f26e957130e49e29fc4d3cb6a;hp=004161e93000eefdfdb2bc10a2a0dfaad5e25883;hpb=2039af9f15947d6097de9c33dcea526e7dde2176;p=www.i-scream.org.git diff --git a/cgi-bin/cvslog.cgi b/cgi-bin/cvslog.cgi index 004161e..01ee2bf 100755 --- a/cgi-bin/cvslog.cgi +++ b/cgi-bin/cvslog.cgi @@ -291,8 +291,13 @@ exit 0; # Print the contents of a file containing html sub print_html { my ($filename) = @_; + my($virtual) = ''; + my(@virtualresponse) = `/web/i-scream/nwww.cgi-bin/logo.cgi`; open(FILE, $filename); while() { + if(/$virtual/) { + s/$virtual/$virtualresponse[@virtualresponse-1]/; + } print; } close FILE;