AKots Reply #1, 2 years, 9 months ago
In Search Highlighting:
$body = explode("<body", $output); // break out the head
But:
$output = implode("<body>", $body);
Result:
<body>>
Solution:
$output = implode("<body", $body);
$body = explode("<body", $output); // break out the head
But:
$output = implode("<body>", $body);
Result:
<body>>
Solution:
$output = implode("<body", $body);