Bug #24366
closedPHP warning in any system BE module
0%
Description
Using today's trunk, I get the following warning in each and every system BE module (Page, List, Recycler, EM, Reports):
PHP Warning
PHP Warning: strstr() [function.strstr]: Empty delimiter in /home/klee/eclipse/typo3_src/t3lib/class.t3lib_extmgm.php line 339
This happens independent of whether a page has been selected in the page tree.
I don't remember seeing this error message two or three days ago.
(issue imported from #M16780)
Files
Updated by Jo Hasenau almost 14 years ago
It seems that the parameters for strstr have been swapped and nobody noticed it, since the behaviour was fine.
strpos would have been the better choice anyway, so I changed that as well.
Could you check, if the error messages disappear with the following patch?
Updated by Steffen Kamper almost 14 years ago
attached is same patch but also strict comparison.
Updated by Oliver Klee almost 14 years ago
This patch fixes the problem for me. +1 by testing.