From 1af600fdd16df75934f61fb6479be0e25db95533 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 13 Nov 2020 10:52:04 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#1256 --- site-default/templates/README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-default/templates/README.txt b/site-default/templates/README.txt index 07303ada..6308be87 100644 --- a/site-default/templates/README.txt +++ b/site-default/templates/README.txt @@ -162,7 +162,7 @@ steps outlined above: But we might also do something more like append some navigation under the body copy or prepend a photo... the sky is the limit. - $content = "" . $page->body; + $content = "…" . $page->body; Our search.php template file for example, populates $content with a list of search results.