Problem with quotes
Philarmon 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Problem with quotes
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Problem with quotes
This requires a code change in the 1.7.2 freeware version
You are looking for the following line in core.php:
This requires a code change in the 1.7.2 freeware version
You are looking for the following line in core.php:
$var = str_replace("
", "<table border="1" align="center" bgcolor="#e5e5e5" width="90%" cellpadding="3" cellspacing="1"><tr><td><font color="#000080">", $var);
1 Re: Problem with quotes
Philarmon
OP
0
From: -
From: -
Problem with quotes
Thank you !
Another question: how do i change the style of the quoted text ?
Thank you !
Another question: how do i change the style of the quoted text ?
1 Re: Problem with quotes
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Problem with quotes
No, it's another bug in the freeware version
To fix this, open pm.php in an editor and find:
and replace with:
No, it's another bug in the freeware version
To fix this, open pm.php in an editor and find:
$insert[pm_text] = DeChomp($insert[pm_text]);
and replace with:
$insert[pm_text] = str_replace("n","<br />",$insert[pm_text]);
Hi !
I have a strange problem with quotes in the private messages - they are displayed as HTML code. For example, when i use the "Send a Reply" function for a private message, i am getting a quoted message by default - surrounded with [ quote ] and [ /quote ].
But when i send the reply and look at the new message, i see the quote like this:
<b>Philarmon wrote:</b>
<br /><table border="1" align="center" bgcolor="#e5e5e5" width="90%" cellpadding="3" cellspacing="1"><tr><td><font color="#000080">sdadsa</font></td></tr></table>
"<" is replaced with "<" in the HTML source - whats up ?
Is there a setting for that somewhere or have i messed something up ?
Thank you !