1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-10 00:04:56 +00:00

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) 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) 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) 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) public static function render_minimal($title, $content)
{ {
return render($title, $content, self::$minimal_content_template); return self::render($title, $content, self::$minimal_content_template);
} }