2022-12-20, 06:04:55
plugin I18N Search
searchresults.php
line 84
replaced by
line 162
replaced by
configure.php
line 117
replaced by
and as if everything works and the errors have disappeared
searchresults.php
line 84
Code:
if (trim($headerText) != '') {
Code:
if (trim($headerText ?? '')) {
line 162
Code:
<div class="search-entry-date"><?php echo strftime($dateFormat, $item->pubDate); ?></div>
Code:
<div class="search-entry-date"><?php echo date($dateFormat, $item->pubDate); ?></div>
configure.php
line 117
Code:
<tr><td><?php i18n('i18n_search/TRANSLITERATION'); ?></td><td><textarea name="transliteration" style="width:5em; height:100px;" class="text"><?php echo htmlspecialchars(@$params['transliteration']); ?></textarea></td><td></td></tr>
Code:
<tr><td><?php i18n('i18n_search/TRANSLITERATION'); ?></td><td><textarea name="transliteration" style="width:5em; height:100px;" class="text"><?php echo htmlspecialchars((string)@$params['transliteration']); ?></textarea></td><td></td></tr>
and as if everything works and the errors have disappeared