From f6240251df8b0af972428ea6488ebfccc5912a63 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Wed, 4 May 2022 14:08:33 +0000 Subject: [PATCH] Move unexpanded to before date line --- sigPlace.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sigPlace.java b/sigPlace.java index e84c54b..f0325d2 100644 --- a/sigPlace.java +++ b/sigPlace.java @@ -75,11 +75,10 @@ public class sigPlace { //Start of a title piece. s=s.replace("-",map.get("$TITLE_CONTENT_START")); s=s+map.get("$TITLE_CONTENT_END").replace("%ID%","id=\"content_"+i+"\""); - s=s+"
⤈ Click to expand.
"; //Use ⤈ if there's more text to be shown than can fit. } else if (s.contains("===")) { - s=map.get("$CONTENT_END")+map.get("$DATE_CONTENT_START")+s.replace("===","")+map.get("$CONTENT_END")+map.get("$CONTENT_END"); + s="
⤈ Click to expand.
"+map.get("$CONTENT_END")+map.get("$DATE_CONTENT_START")+s.replace("===","")+map.get("$CONTENT_END")+map.get("$CONTENT_END"); } } for (String key : map.keySet()) {