--- web/cgi-bin/cvslog.cgi 2004/03/24 21:08:09 1.32 +++ web/cgi-bin/cvslog.cgi 2004/03/24 23:29:21 1.33 @@ -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;