Quote:
Today at 07:11 PM ethics said this in Post #14
The error is that while I have the "specify the date of the ToM winner" I do not get the switch to turn the user on.
In other words, the screenshot shows that you have two fields in the options (user.php). I only get one.
|
Im extremely sorry about this... I forgot a small piece of the code in two places which is why this is not showing up for you... and for the people who said it is working they will need to update it. Sorry once again. Ive updated the download file and the changes are also posted below... Sorry.
NOTE THAT THE BELOW CHANGES ARE NOT ONLY WHAT I FORGOT TO ADD, BUT THE ENTIRE SECTION OF THE HACK THAT I MISSED. IN EACH OF THE TWO CHANGES BELOW... ONE LINE WAS MISSING FROM MY ORIGINAL ATTACHMENT.
In admin/user.php find:
PHP Code:
makeinputcode("IP Address","aipaddress",$ipaddress);
After, Add this:
PHP Code:
makeinputcode("Has $user[username] won [ENTER YOUR OWN DESCRIPTION HERE]?","winner1",$user[winner]);
makeinputcode("Month, Year of Winning [ENTER YOUR OWN DESCRIPTION HERE]?","winnerdate1",$user[winnerdate]);
Find:
PHP Code:
makeinputcode("IP Address","aipaddress",$user[ipaddress]);
After, Add this:
PHP Code:
makeyesnocode("Has $user[username] won [ENTER YOUR OWN DESCRIPTION HERE]?","winner1",$user[winner]);
makeinputcode("Month, Year of winning [ENTER YOUR OWN DESCRIPTION HERE]?","winnerdate1",$user[winnerdate]);