Hi,
The report is about opportunities plann actual status.
When I display an actual status for risk management, all is OK. The text wich has been entered with the rich editori displays good.
But when I display an actual status for opportunities plan, the tex wich was entered with tich editor displays with coding characters like
Regards
HI,
I Solved my issue.
I had to remove "htmlEncode" string in opportunityPlan.php (in report folder) anywhere I saw :
. htmlEncode($opportunity->description)
. htmlEncode($opportunity->impact
. htmlEncode($opportunity->cause
So Yet, the strings are now :
. ($opportunity->description)
. ($opportunity->impact
. ($opportunity->cause
I did this becaus there where no htmlEncode in riskManagementPlan.php in the same lines :
ex : if ($opportunity->description and $opportunity->name!=$opportunity->description) { echo ':
' . ($opportunity->description); }
So problem soved for me.
Can you please check if htlmEncode should or not be present in opportunityPlan.php, and if not, provide a patch next time ?
Thanks in advance,
Boris
Hi,
You're right.
Risks management was correct, but not opportunity plan.
Your fix is good. Must be completed for $opportunity->result.
Patch will be included in next version
