2008-02-19 Martin Kutschker <martin.t.kutschker@blackbox.net>
* Added feature #7393: ASCII wrapper functions for strtoupper and strtolower (patch by Steffen Kamper)
+ * Use t3lib_div::strtoupper() for processing indexed search templates
2008-02-19 Dmitry Dulepov <dmitry@typo3.org>
// Multilangual text
$substituteArray = array('searchFor', 'extResume', 'atATime', 'orderBy', 'fromSection', 'searchIn', 'match', 'style', 'freeIndexUid');
foreach ($substituteArray as $marker) {
- $markerArray['###FORM_'.strtoupper($marker).'###'] = $this->pi_getLL('form_'.$marker,'',1);
+ $markerArray['###FORM_'.t3lib_div::strtoupper($marker).'###'] = $this->pi_getLL('form_'.$marker,'',1);
}
$markerArray['###FORM_SUBMIT###'] = $this->pi_getLL('submit_button_label','',1);
if (is_array($tmplContent)) {
foreach ($tmplContent AS $k => $v) {
- $markerArray['###'.strtoupper($k).'###'] = $v;
+ $markerArray['###'.t3lib_div::strtoupper($k).'###'] = $v;
}
}