Fixing the email notification formatting in sNews
filed under: sNews CMS / Hacks & Mods
OK, this one has been bugging the crap out of me lately, so I just fixed it, have you ever received a comment notification email or email from your contact form and it looked like this...
A new comment was posted into your site. Here's a copy:
Name: Bob
Email: Bob@bob.com
Comment:
Hello, I don\'t know what\'s wrong, I can\'t seem to make this mod work on my site.
well, that's the slashes added by magic quotes gpc and they need to be stripped before sending the email.
Here's how we'll do that, first back up your snews.php file and open a copy, now look inside function send_email(), near the end of the function, find;
$body .= $text."\n";
add the following code below it.
// begin new code
if (get_magic_quotes_gpc()) {
$body = stripslashes($body);
}
// end new code
That will strip those annoying slashes from the text, magic quotes will be removed entirely from PHP 6, so plan accordingly. Cheers.
Comments
No comments posted yet, why not be the first?
Categories
Recent Entries
Recent Comments
- Redbeard (I managed to get Vampire: The Masquerade - Bloodlines ...)
- Tina (Installed this today and working like a charm :) Thanks!)
- Tina (Thanks for this great mod :) Working on my site for quite a ...)
- konga (Hi Matt, if you plan to update it, please have a look into ...)
- David (Yo Matt, I have a problem, when I use this mod. ...)
- Dave (Have a Toshiba NB305. Win7 starter would not do screen ...)
- Daichisan (Howdy Matt, I dont really get it, whats ...)
- Matt (Mine is just customized further, that's all :) It just spits ...)
- Matt (David, Do you own or admin the server? Do you have exec ...)
Popular Entries
- Compact archives for sNews 1.7 (5/5)
- Light-weight related articles mod for sNews 1.7 (4.78/5)
- SEF / SEO search for your sNews website (4.75/5)
- 1024x600 netbook wallpapers of Evangeline Lilly (4.67/5)
- Gravatar mod for sNews 1.7 (4.67/5)
- An improved tag cloud for sNews 1.7 (4.67/5)
- Image / math hybrid captcha version 2, vastly improved (4.64/5)
- Command & Conquer Generals, and the Zero Hour expansion on the Acer Aspire One netbook (4.6/5)
- Related Articles mod for sNews CMS, public beta release (4.6/5)