W & A's Music Reviews
…
»…
»…
»…
»…
»…
»…
»…
»…
»…
»<p> # Copyright 2001-2004 Six Apart. This code cannot be redistributed without<br /> # permission from www.movabletype.org.<br /> #<br /> # $Id: mt-comments.cgi,v 1.35 2004/05/17 19:51:25 ezra Exp $<br /> use strict; </p> <p> use CGI;<br /> my $cgi = new CGI;<br /> my $commentText = $cgi->param(‘text’); </p> <p> if ($commentText =~ m/http:/i)<br /> {<br /> print “Content-Type: text/html;\n”;<br /> print “Status: 404 Not Found\n”;<br /> print “\n”;<br /> }<br /> else<br /> {<br /> my($MT_DIR);<br /> BEGIN {<br /> if ($0 =~ m!…
»