Clan Roster 1.0 on PHPNuke 7.9 Posted:
Tue Feb 27, 2007 11:25 pm |
|
|
|
|
|
Hello.
I've been browsing these forum for quiet sometime now, hoping I could find a solution to my problem, unfortunately, I couldn't find anything related. It seems that this module is working fine in your end.
I am using php nuke 7.9.
I followed everystep at the readme file included and I encountered difficulties locating:
| Code:
|
$realname = check_html($realname, nohtml);
|
at the /modules/Your_Account/index.php
By the way, I used No Mail Ya Hack for 7.9 for my Your Account module.
I wonder where to add this code:
| Code:
|
$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);
|
Im really confused finding the codes. I tried viewing the original Your Account/index.php of nuke 7.9, but still i couldnt find the codes Im looking for.
For the codes above I posted it right after:
| Code:
|
$realname = filter ($realname, nohtml);
|
My Team Roster page is broken as a result, only the right blocks appeared, the center and the left blocks didnt,
|
|
|
|