When the quote character " is used, the forum adds a leading / symbol. How can this be corrected?
When the quote character " is used, the forum adds a leading / symbol. How can this be corrected?
Where are you trying to use the double quotes? In a forum title?
In the text of the forum. Not in the forum title.
Here's a segment of what I entered:
Chapter 0 "Before." If you're
Here's what it looks like when I post it:
Chapter 0 \"Before.\" If you\'re
Ah, forum descriptions right?
Open wp-bulletin-board/php/admin/wpbb-admin-forums.php around line 412 find:
echo $type->description;
Replace with:
echo stripslashes($type->description);
Save and close.
Open wp-bulletin-board/php/wpbb-index.php around line 172 and find:
echo $forum->description;
Replace with:
echo stripslashes($forum->description);
Then whenever you want to use slashes, instead of using \ or / use \\ or //.
You must log in to post.