I am guessing that it is a change in this line from searchresults.php
was
now
missing
Try changing this to
was
PHP Code:
<div class="search-entry-date"><?php echo str_replace('%','',date('d-m-Y', $item->pubDate)); ?></div>
PHP Code:
<div class="search-entry-date"><?php echo strftime($dateFormat, $item->pubDate); ?></div>
Code:
'%','',
Try changing this to
PHP Code:
<div class="search-entry-date"><?php echo strftime('%','', $dateFormat, $item->pubDate); ?></div>