Robert Vock
Robert Vock
Hmm... You're right. I cannot reproduce the error within a testcase in this repository. I'll investigate and try to create a working test case.
@nicolas-grekas Yes, it's a behavior, that appears when `setlocale` is called before creating the Crawler: ```php setlocale(LC_CTYPE, null); $document = $this->createCrawler('mą'); $this->assertSame('mą', $document->text(null, true)); ``` I know it's incorrect to...
`setlocale(LC_CTYPE, '0')` returns the string `C`.
Sorry, my first comment was not formated correctly. You could not see the conditional comments correctly. I've updated my post. Now you can see, that I have two conditional comments....
I've added a commit in my fork, but the TagRendererTest still has errors. I am not sure, if my fix is incorrect or if the testcase needs adjustments. Should I...
Do you mean, if I was able to fix the issue? Yes, the order of the included files is correct with my commit. But the testcases still have errors. That's...
Sorry, but you closed the issue, but did not merge the commit: https://github.com/rvock/typo3_encore/commit/db7c74941822fd96759e68c48a2b97e50f38c743 This bug is not yet fixed in master.
Hm, very strange. I am currently using the following test-file (without symfony or any other dependencies): ```php
It's not the `\s` character class, but the `\S` class: ```php
The script outputs the following: ``` 9 a b c d 20 85 a0 ``` `locale` on Terminal outputs the following: ``` LANG="de_DE.UTF-8" LC_COLLATE="en_US.UTF-8" LC_CTYPE="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_ALL="en_US.UTF-8"...