<<eWɘ>>yn

Results 81 comments of <<eWɘ>>yn

@richard67 am I understanding you correctly, that support for MS SQL is dropped in Joomla 4? When did that happen... forgive me for asking but I missed that... not that...

You got me... guilty as charged I did not read. Thanks!

But I was actually looking for the conversation minutes in PTL that lead to that...

Just shaking my head.... and the then we move on... lol Thanks @richard67 that was before my time, when the J4 journey started I suppose....

Thank you @mbabker for sharing your thoughts on the importance of API documentation and type hints in PHP. I understand that you believe relying too heavily on type coercion or...

@weeblr can you give me a link to where this code to compose multiple headers is found in Joomla 3? Then I see that we are setting the [header here](https://github.com/joomla-framework/application/blob/2.0-dev/src/AbstractWebApplication.php#L563)...

Where do you see this `hardcoded list of single value headers`? Further have you looked at why Laminas does not merge your header? Where is this line `if ($value &&...

> That [method](https://github.com/joomla-framework/application/blob/2.0-dev/src/AbstractWebApplication.php#L615) just iterate over the values and therefore always output the last one. Therefore we should fix this [getHeaders](https://github.com/joomla-framework/application/blob/2.0-dev/src/AbstractWebApplication.php#L575) method instead, so that it will correctly deal with...

Wondering why they did not just use this function `\Laminas\Diactoros\Response`->[getHeaderLine](https://github.com/laminas/laminas-diactoros/blob/2.2.2/src/MessageTrait.php#L176) in the Response class, since it already deals with this issue, or so it seems.

This could be the fix: ``` /** * Method to get the array of response headers to be sent when the response is sent to the client. * * @return...