From 7eab42a9c93de707aa9d1ef928649ef58d3c84d9 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sat, 5 May 2018 01:12:33 -0600 Subject: [PATCH] output_conditional don't respect edit --- lib/themefunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/themefunctions.php b/lib/themefunctions.php index 0042876..418aef9 100644 --- a/lib/themefunctions.php +++ b/lib/themefunctions.php @@ -294,7 +294,7 @@ function get_navigation($currentpage = null, $classPrefix = "", $liclass = "", $ * @param string $var */ function output_conditional($content, $var) { - if ($var == "" && !isset($_GET['edit'])) { + if ($var == "") { return; } echo str_replace("[[VAR]]", $var, $content);