Very simple: The last link in the error message displayed when mysqli is missing in PHP contains HTML entities such that the last link is not displayed correctly in the web browser. From the source:
The <a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2Fen%2Fbook.mysqli.php&amp;token=7ea0789bf0704a5ba666b806ab45fc80" target="Documentation"><em>mysqli</em></a> extension is missing. Please check your PHP configuration. <a href="Documentation.html#faqmysql" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help" /></a>
Just replace it by
The <a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2Fen%2Fbook.mysqli.php&amp;token=7ea0789bf0704a5ba666b806ab45fc80" target="Documentation"><em>mysqli</em></a> extension is missing. Please check your PHP configuration. <a href="Documentation.html#faqmysql" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help" /></a>
and you're done. Thanks! :)
Marc, this looks like a duplicate of [#3768], which you fixed. Can you confirm?
Related
Bugs:
#3768Sorry for bothering, I hadn't found that ticket when searching. :(
Thanks for having it fixed already!