From 259db3778c9385b9e4811e495146267b14b67a46 Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Sat, 6 Oct 2018 23:02:22 -0400 Subject: Add missing else clause --- include/plugin.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/plugin.php b/include/plugin.php index fdc62b3a7..ce081401d 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -1075,8 +1075,9 @@ function get_markup_template($s, $root = '') { $newroot .= '/'; } $template = $t->get_markup_template($s, $newroot); - } - $template = $t->get_markup_template($s, $root); + } else { + $template = $t->get_markup_template($s, $root); + } return $template; } } -- cgit v1.2.3