rn appears in text
Moderator: Thorsten
Hi,
I thought I had an idea but when I saw your phpinfo page the idea went away... I'm still thnking about the problem and talking about that with PHP core developers.
bye
Thorsten
I thought I had an idea but when I saw your phpinfo page the idea went away... I'm still thnking about the problem and talking about that with PHP core developers.
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi Mark,
please send me an e-mail as a reminder. I've got some free time next week so I can work on a fix for your issue.
bye
Thortsen
please send me an e-mail as a reminder. I've got some free time next week so I can work on a fix for your issue.
bye
Thortsen
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
rn in text
I get it too. I seem to only have it when I'm pasting from Microsoft Word.
Hi,
I tested this with upcoming phpMyFAQ 1.5.3 and I cannot reproduce this with pasting from MS Word. Do you have a phpinfo() page for me?
bye
Thorsten
I tested this with upcoming phpMyFAQ 1.5.3 and I cannot reproduce this with pasting from MS Word. Do you have a phpinfo() page for me?
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Thorsten wrote:Hi,
I tested this with upcoming phpMyFAQ 1.5.3 and I cannot reproduce this with pasting from MS Word. Do you have a phpinfo() page for me?
bye
Thorsten
http://www.freezine-articles.com/info.php
I pm'd you the login details a few weeks ago feel free to add a few articles and then log in.
Mark
Hi,
I could reproduce this issue. It only happened when a entry was written in the public frontend, right?
I fixed it and it should be available tomorrow in the stable CVS snapshot. The fix will be in 1.5.3
bye
Thorsten
I could reproduce this issue. It only happened when a entry was written in the public frontend, right?
I fixed it and it should be available tomorrow in the stable CVS snapshot. The fix will be in 1.5.3
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
yes, if an article is written in the front end or pasted in the front end..Thorsten wrote:Hi,
I could reproduce this issue. It only happened when a entry was written in the public frontend, right?
I fixed it and it should be available tomorrow in the stable CVS snapshot. The fix will be in 1.5.3
bye
Thorsten
Thanks for fixing this, Is there 1 particular i can change or will i need the full CVS install
Mark
Hi,
you can change the both lines in save.php from
to
bye
Thorsten
you can change the both lines in save.php from
Code: Select all
$content = $db->escape_string(safeSQL(safeHTML(nl2br($_POST["content"]))));
$contentlink = $db->escape_string(safeSQL(safeHTML($_POST["contentlink"])));
Code: Select all
$content = $db->escape_string(safeHTML(nl2br($_POST["content"])));
$contentlink = $db->escape_string(safeHTML($_POST["contentlink"]));
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Thorsten wrote:Hi,
you can change the both lines in save.php from
toCode: Select all
$content = $db->escape_string(safeSQL(safeHTML(nl2br($_POST["content"])))); $contentlink = $db->escape_string(safeSQL(safeHTML($_POST["contentlink"])));
byeCode: Select all
$content = $db->escape_string(safeHTML(nl2br($_POST["content"]))); $contentlink = $db->escape_string(safeHTML($_POST["contentlink"]));
Thorsten
Thank you that works perfectly....

