Fix logic in mod/hovercard
This commit is contained in:
parent
9f75adf015
commit
e95ad45de5
1 changed files with 4 additions and 2 deletions
|
@ -135,8 +135,10 @@ function get_template_content($template, $root = '')
|
||||||
{
|
{
|
||||||
// We load the whole template system to get the filename.
|
// We load the whole template system to get the filename.
|
||||||
// Maybe we can do it a little bit smarter if I get time.
|
// Maybe we can do it a little bit smarter if I get time.
|
||||||
$t = Renderer::getMarkupTemplate($template, $root);
|
$templateEngine = Renderer::getTemplateEngine();
|
||||||
$filename = $t->filename;
|
$template = $templateEngine->getTemplateFile($template, $root);
|
||||||
|
|
||||||
|
$filename = $template->filename;
|
||||||
|
|
||||||
// Get the content of the template file
|
// Get the content of the template file
|
||||||
if (file_exists($filename)) {
|
if (file_exists($filename)) {
|
||||||
|
|
Loading…
Reference in a new issue