Removed the unncessary pre tags.

This commit is contained in:
JT Smith 2002-07-31 03:57:15 +00:00
parent 888a4b3536
commit a3b846f437

View file

@ -20,7 +20,7 @@ sub _replacement {
if ($param[0] =~ /passwd/ || $param[0] =~ /shadow/ || $param[0] =~ /WebGUI.conf/) {
$temp = "SECURITY VIOLATION";
} else {
$temp = "<pre>".`$param[0]`."</pre>";
$temp = `$param[0]`;
}
return $temp;
}