Edit /include/review_add.php
Near the top, locate
| Code: |
$html = $table2 . "<tr><td class=\"whatText\">" . $review_add_24;
$html .= "</td></tr></table>";
echo whattable("100%","center","",$html);
unset($html);
|
and change to .. well, adjust as desired
| Code: |
$html = $table2 . "<tr><td class=\"whatText\">" . $review_add_24;
$html .= "</td></tr></table>";
$html .= "<h1>Review function disabled</h1><p>Due to the repeated attempts of
incredibly stupid spammers I've had to disable the review feature. While I did
read every review, and there was never any chance of spam getting published, it
wasted a ridiculous amount of my time.</p>";
echo whattable("100%","center","",$html);
unset($html);
exit;
|
You may also want to remove the link in the featured sites you have, to do that edit /include/review_inc.php
Near the bottom, simply remove this block of code
| Code: |
$html = $table2 . "<tr><td class=\"regularText\"><a class=\"regularText\" ";
$html .= "href=\"./directory/review_add.html?";
if($usesession=="yes"){$html .="" . session_name() . "=" . session_id() ."&";}
$html .= "SiteID=" . $SiteID . "\">" . $review_11;
$html .= "$get_sites[1]</a></td></tr></table>";
|