mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
fixed another breaking bug
This commit is contained in:
parent
81dfe2267b
commit
2900c13ee2
2 changed files with 4 additions and 4 deletions
4
core.php
4
core.php
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue