diff options
author | M.Dent <dentm42@dm42.net> | 2018-10-06 23:02:22 -0400 |
---|---|---|
committer | M.Dent <dentm42@dm42.net> | 2018-10-06 23:02:22 -0400 |
commit | 259db3778c9385b9e4811e495146267b14b67a46 (patch) | |
tree | b48e994a0e92a4b7f265bdc3c949d3275675b193 /include/plugin.php | |
parent | d1745319318b47932cf5d4acf400bfbf62f94ddc (diff) | |
download | volse-hubzilla-259db3778c9385b9e4811e495146267b14b67a46.tar.gz volse-hubzilla-259db3778c9385b9e4811e495146267b14b67a46.tar.bz2 volse-hubzilla-259db3778c9385b9e4811e495146267b14b67a46.zip |
Add missing else clause
Diffstat (limited to 'include/plugin.php')
-rwxr-xr-x | include/plugin.php | 5 |
1 files 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; } } |