- 🇩🇪Germany jan kellermann
Drupal 7 is end of live.
If you want to use PDF using mPDF → for your Drupal 10/11 please checkout new version 3.x → .
When parsing urls that contain queries, the query separator ampersands are converted into the '&' html entity. Eg:
http://server.com/?param1=val1¶m2=val2
gets to writeHTML() as
http://server.com/?param1=val1&param2=val2
Replacing '& amp ;'* with a simple '&' before writeHTML() in _pdf_using_mpdf_generator()
function fixes the problem.
(*) The spaces are to prevent the coversion on the post text
Closed: outdated
2.5
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is end of live.
If you want to use PDF using mPDF → for your Drupal 10/11 please checkout new version 3.x → .