Problem with clan module v1.0 Posted:
Tue Oct 30, 2007 5:33 pm |
|
|
|
|
|
Ok that problem is fixed, BUT...now while I was editing the index.php file I can not find the line:
$realname = check_html($realname, nohtml);
The best matched line would be:
$realname = filter($realname, "nohtml", 1);
Would this be the right line? Or is this another misprint? I have never had a problem like this with any of your downloads! This is exactly what is says in the Read Me file included:
FIND
/////////////////////////////////////////////
$realname = check_html($realname, nohtml);
/////////////////////////////////////////////
AFTER ADD
/////////////////////////////////////////////
$alias = $_POST['alias'];
$country = $_POST['country'];
$sex = $_POST['sex'];
$food = $_POST['food'];
$age = $_POST['age'];
$celb = $_POST['celb'];
$drink = $_POST['drink'];
$status = $_POST['status'];
$gun = $_POST['gun'];
$map = $_POST['map'];
$movie = $_POST['movie'];
$car = $_POST['car'];
$pic = $_POST['picture'];
$processor = $_POST['processor'];
$ram = $_POST['ram'];
$bestsessions = $_POST['bestssession'];
$favcountry = $_POST['favcountry'];
$mouse = $_POST['mouse'];
$keyboard = $_POST['keyboard'];
$videocard = $_POST['videocard'];
$soundcard = $_POST['soundcard'];
$motherboard = $_POST['motherboard'];
$monitor = $_POST['monitor'];
$resolution = $_POST['resolution'];
$quote = $_POST['quote'];
$connection = $_POST['connection'];
$bio = $_POST['cmod_bio'];
//html check
$alias = check_html($alias, nohtml);
$country = check_html($country, nohtml);
$sex = check_html($sex, nohtml);
$food = check_html($food, nohtml);
$age = check_html($age, nohtml);
$celb = check_html($celb, nohtml);
$drink = check_html($drink, nohtml);
$status = check_html($status, nohtml);
$gun = check_html($gun, nohtml);
$map = check_html($map, nohtml);
$movie = check_html($movie, nohtml);
$car = check_html($car, nohtml);
$pic = check_html($picture, nohtml);
$processor = check_html($processor, nohtml);
$ram = check_html($ram, nohtml);
$bestsessions = check_html($bestsessions, nohtml);
$favcountry = check_html($favcountry, nohtml);
$mouse = check_html($mouse, nohtml);
$keyboard = check_html($keyboard, nohtml);
$videocard = check_html($videocard, nohtml);
$soundcard = check_html($soundcard, nohtml);
$motherboard = check_html($motherboard, nohtml);
$monitor = check_html($monitor, nohtml);
$resolution = check_html($resolution, nohtml);
$quote = check_html($quote, nohtml);
$connection = check_html($connection, nohtml);
$bio = check_html($bio, nohtml);
I hate to be a pain but this is something I really want on my site. I have been looking for along time for something like this. I even made one myself which was not good at all, but this one has all the options that I want!
|
|
|
|