Hello. Is there a way to show the calls made to the Zend_View or something to debug this, if is a bug ? I'm not know too much about TestUnit :).
Thx. ----- Original Message ----- From: "Juan Felipe Alvarez Saldarriaga" <[EMAIL PROTECTED]> To: "fw-general" <[email protected]> Sent: Monday, March 31, 2008 12:55:01 PM (GMT-0500) America/Bogota Subject: [fw-general] Zend_View_Helper_Action Issue, duplicated view output Hey!. I'm using ZFW 1.5.1, and I have an issue when I try to execute the $this->action(); helper, this is what I got, a view named "view-chart.phtml" execute the action helper, <?= $this->action( "show-chart-main-panel", "diagnostic", "platform", array( "patient_id" => $this->intPatientId ) ); ?>, then the view of the second action ( "show-chart-main-panel" ) execute another action helper <?= $this->action( "show-record-image", "patient", "platform", array ( 'patient_id' => $this->intPatientId, 'patient_record_id' => $this->intPatientRecordId, 'field_id' => $this->intFieldId ) ); ?>, what's the issue ? the output of "show-record-image" appears twice on the "view-chart.phtml", any help ? * view-chart.phtml: <div> <h3>View Chart:</h3> <?= $this->action( "show-chart-main-panel", "diagnostic", "platform", array( "patient_id" => $this->intPatientId ) ); ?> </div> * view-chart.phtml calls "show-chart-main-panel" action, this is the view of "show-chart-main-panel" action, show-chart-main-panel.phtml: <div> <h3>Show Cart Main Panel:</h3> <?= $this->action( "show-record-image", "patient", "platform", array ( 'patient_id' => $this->intPatientId, 'patient_record_id' => $this->intPatientRecordId, 'field_id' => $this->intFieldId ) ); ?> </div> * show-record-image.phtml: <div> <h3>Show Record</h3> </div> This is the final result: <div> <h3>View Chart:</h3> <div> <h3>Show Record</h3> </div> <div> <h3>Show Cart Main Panel:</h3> <div> <h3>Show Record</h3> </div> </div> </div> "show-record-image" string is duplicated, any help ? Thx.
