Author
Message
Raven Site Admin/Owner Joined: Aug 27, 2002 Posts: 16986 Location: Kansas
Posted:
Sat Apr 22, 2006 11:58 am
Version : v2.02.02
Issue : Feed_Back module same type problems as Recommend_Us module
Submitted By: Kenwood: PM but reference
Solution By : Raven
Fix:
Find, in all language files
?>
Add before it on a new line:
define("_FB_NO","no"); to all language files.
Find, in index.php
include("header.php");
Add after on new line
$FB_NO = _FB_NO;
Find OpenTable();
Change every instance of $send = "no"; to $send = $FB_NO; after OpenTable();
Find
if ($send != "no") {
Change to
if ($send != $FB_NO) {
Find
elseif ($send == "no") {
Change to
elseif ($send == $FB_NO) {
montego Site Admin Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Sat Apr 22, 2006 3:37 pm
View next topic
View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum