fixed another breaking bug

This commit is contained in:
Starbeamrainbowlabs 2015-05-24 21:01:18 +01:00
parent 81dfe2267b
commit 2900c13ee2
2 changed files with 4 additions and 4 deletions

View File

@ -225,11 +225,11 @@ class page_renderer
}
public static function render_main($title, $content)
{
return render($title, $content, self::$main_content_template);
return self::render($title, $content, self::$main_content_template);
}
public static function render_minimal($title, $content)
{
return render($title, $content, self::$minimal_content_template);
return self::render($title, $content, self::$minimal_content_template);
}

View File

@ -353,11 +353,11 @@ class page_renderer
}
public static function render_main($title, $content)
{
return render($title, $content, self::$main_content_template);
return self::render($title, $content, self::$main_content_template);
}
public static function render_minimal($title, $content)
{
return render($title, $content, self::$minimal_content_template);
return self::render($title, $content, self::$minimal_content_template);
}