From 8ca321df7c742f4beed69bc92b3e28f978e56e04 Mon Sep 17 00:00:00 2001 From: "M.Dent" Date: Sun, 7 Oct 2018 03:02:22 +0000 Subject: Add missing else clause (cherry picked from commit 259db3778c9385b9e4811e495146267b14b67a46) --- 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