Closed
Bug 449236
Opened 18 years ago
Closed 16 years ago
click preview button on forum and browser crashes with all add-ons disabled
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: nospam, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.14) Gecko/20080419 Ubuntu/8.04 (hardy) Firefox/2.0.0.14
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.14) Gecko/20080419 Ubuntu/8.04 (hardy) Firefox/2.0.0.14
I tried posting info to my forum and firefox crashes
be aware im using ubuntu linux with all updates and firefox 3.01 with all addon's disabled I tried to reproduce this with windows but I couldn't.
heres the forum
http://www.symfony-project.org/forum/
below this line is the exact code i tried to post !
i cant display this session var in symfony but i can using $_SESSION for php...it seems to be a bug related to symfony's way to handle sessions.?
[code]
Aug 05 10:24:57 symfony [info] {sfRequest} request parameters array ( 'module' => 'workstationmessages', 'action' => 'preview_save', 'message' => '<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="VERDANA" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="VERDANA" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">FDFSDFDFFDSFSD</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="VERDANA" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="VERDANA" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0"> </FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">test</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0"> </FONT></P></TEXTFORMAT>',)
[/code]
[code]
public function executePreview(){
$this->setLayout(false);
$this->message = $this->getUser()->getAttribute('wmsg_message');
}
public function executePreview_save(){
$message = $this->getRequestParameter('wmsg_message');
$this->logMessage($message);
$this->getUser()->setAttribute('wmsg_message', $message);
$message = $this->getUser()->getAttribute('wmsg_message');
return $this->renderText($message);
}
[/code]
Reproducible: Always
Steps to Reproduce:
1. login to forum
2. paste in code provided
3. click preview to see code before posting and BAM browser crashes
Actual Results:
browser dies with no errors
Expected Results:
to be able to post the information
| Reporter | ||
Comment 1•18 years ago
|
||
cc me on list please
Comment 2•16 years ago
|
||
I created an account on the forum to test. Works fine for me, using Firefox 3.7a1pre on Ubuntu 9.10.
If it's still crashing for you, I guess you could try getting a stack trace
https://developer.mozilla.org/En/How_to_get_a_stacktrace_for_a_bug_report
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•