Bug #18777
closedModified tslib_cObj::substituteMarkerArray() misses call parameter
0%
Description
In TYPO3 4.2 tslib_cObj::substituteMarkerArray() has become a simple wrapper for the newly introduced method t3lib_parsehtml::substituteMarkerArray(). This new method can be called with 5 parameters, the last one of which makes it possible to remove unreplaced markers.
The wrapper tslib_cObj::substituteMarkerArray() has only 4 parameters and thus cannot activate the replacement of unused markers, because the default in t3lib_parsehtml::substituteMarkerArray() is 0.
We should add the 5th parameter to tslib_cObj::substituteMarkerArray() and I propose to set its value to 1, because it makes sense to want to remove unused markers.
(issue imported from #M8385)
Files
Updated by Francois Suter over 16 years ago
Shouldn't you be answering in the core list?
Updated by Steffen Kamper over 16 years ago
seems going so quick today, i havn't seen this on core list :)
DD08 seems to be a very good motivator!
Updated by Francois Suter over 16 years ago
Added updated patch using boolean values instead of integers and setting default to false for 5th parameter.