Actions
Bug #15352
closedWarning: mb_ereg(): mbregex compile err: in /t3lib/class.t3lib_sqlparser.php on line 1124
Start date:
2006-01-03
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
while installing typo3 4.0beta1 with tx_dbal according to "http://typo3.org/documentation/document-library/dbal/Doing_the_actual_set/"
after selecting the DB we got:
Warning: mb_ereg(): mbregex compile err: premature end of regular expression in /var/www/typo3dev.mindboxintern.de/typo3_src-4.0beta1/t3lib/class.t3lib_sqlparser.php on line 1124
several times
we replaced "ereg('[\]*$',$v,$reg);" with "preg_match('/\\*$/',$v,$reg);"
it seems to work, no more warning and we can login, but no intensive testing so far
(issue imported from #M2167)
Updated by Michael Stucki almost 19 years ago
Seems fixed since there are no more mb_* function calls in t3lib_sqlparser.php.
Actions