From 8f2363b3e9d5d1f518f910bce47d517d71cc7fa4 Mon Sep 17 00:00:00 2001 From: Stefan Sterz Date: Thu, 17 Aug 2017 12:32:06 +0200 Subject: [PATCH] fix: fix minor html bug --- site/controllers/notes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/controllers/notes.php b/site/controllers/notes.php index 81236e5..9675ca1 100644 --- a/site/controllers/notes.php +++ b/site/controllers/notes.php @@ -28,7 +28,7 @@ function split_words($string, $url) { $stringCut = substr($string, 0, 1000); // make sure it ends in a word so assassinate doesn't become ass... - $string = substr($stringCut, 0, strrpos($stringCut, ' ')).'...
Read More →'; + $string = substr($stringCut, 0, strrpos($stringCut, ' ')).'...

Read More →

'; }