From 139176eaed2b13a9e212ad95f396dee39332e472 Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Fri, 3 Mar 2017 14:58:35 +0900 Subject: [PATCH] Add support to pm_snippet to maintaining spolier tags, so that spoilers are not revealed by Recent Theme on frontpage --- inc/display.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/inc/display.php b/inc/display.php index ce39197c..d65cd1b8 100644 --- a/inc/display.php +++ b/inc/display.php @@ -98,6 +98,12 @@ function pm_snippet($body, $len=null) { // Replace line breaks with some whitespace $body = preg_replace('@
@i', ' ', $body); + // Strip tags but leave span tags which contain spoiler + $body_with_spoiler_tags = strip_tags($body,''); + + // Check for spoiler tags + $spoiler = preg_match("/spoiler/", $body_with_spoiler_tags); + // Strip tags $body = strip_tags($body); @@ -109,6 +115,13 @@ function pm_snippet($body, $len=null) { $body = mb_substr($body, 0, $len); + if ($spoiler){ + $value = "" . utf8tohtml($body) . ""; + } + else { + $value = utf8tohtml($body); + } + // Re-escape the characters. return '' . utf8tohtml($body) . ($strlen > $len ? '…' : '') . ''; }