watersedge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Email body quotes not escapedWell, for those of you who came here with the same problem, here’s what i did:
Open wp-mail.php and change the following lines:
$subject = trim(str_replace(get_settings('subjectprefix'), '', $subject));and
$content = trim($content);to
$subject = addslashes(trim(str_replace(get_settings('subjectprefix'), '', $subject)));and
$content = addslashes(trim($content));Respectively.
Forum: Fixing WordPress
In reply to: Email body quotes not escapedThanks. I’ll take a look.
Forum: Fixing WordPress
In reply to: Email body quotes not escapedHas this always been an issue with WP (since mail posting has existed)? I find it hard to believe that what seems to be a trivially simple fix (since the escaping is already done during regular posts) hasn’t been fixed yet…
Forum: Fixing WordPress
In reply to: Links and categories in non-WP pagesUpdate: This is what I was trying to do.
http://e-brian.dyndns.org/photos/index.php
At the top, to be able to add WP links to other pages. Your help was perfect!
Forum: Fixing WordPress
In reply to: Links and categories in non-WP pagesThanks, that did work, and I should be able to figure everything else out just fine. thanks!
Forum: Fixing WordPress
In reply to: Links and categories in non-WP pagesHmm, I believe I tried that and I thought I ended up just getting the whole page again. So lets say that I took a blank page and tossed that in, are you familiar enough with the calls to say, get the links from a particular category?