Truncation is configured for 2 paragraphs.
If there is 1 paragraph there is no "Continue reading" button, as expected.
If there are 3 paragraphs there is a "Continue reading" button, as expected.
But if there are 2 paragraphs there is a "Continue reading" button even though the whole 2 paragraphs are already shown. What's the point of this?
Should line 375 of "truncater.php" be:
if (count($matches) <= $maximumParagraphs) {
instead of:
if (count($matches) < $maximumParagraphs) {
Alan