SMFHacks.com

SMFHacks.com => Site Discussion => Bugs => Topic started by: Green CoW on July 18, 2006, 04:43:22 pm

Title: User Email Bug??
Post by: Green CoW on July 18, 2006, 04:43:22 pm
Hi there!
well first off... Thanks for all the GREAT Mods!!!

Ok... to the problem..

Well I installed the User Email System today, and since I don't use the default theme I installed it manually (tho I suck in php)  ;D !
Everything works great except on tiny thing!

When I uncheck the "Send a copy of this e-mail to yourself" I get an error in the Forum Error Log.
Quote
8: Undefined index: sendcopy
File: httpd.www/forums/Sources/User_Email.php
Line: 64
If I have it checked no error appears!
Title: Re: User Email Bug??
Post by: SMFHacks on July 18, 2006, 05:33:32 pm
Fixed for next relase
Find
Code: [Select]
//Check if it should send the sender a copy of email
$sendcopy = $_POST['sendcopy'];
Change to
Code: [Select]
//Check if it should send the sender a copy of email
@$sendcopy = $_POST['sendcopy'];
Title: Re: User Email Bug??
Post by: Green CoW on July 19, 2006, 04:18:38 pm
Ahhh... Nice... Works perfect!!! 8)

Thanx SMFHacks!!