mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-24 21:03:19 +09:00
Merge branch 'develop' into next
This commit is contained in:
commit
9782c30654
14 changed files with 42 additions and 18 deletions
|
|
@ -2395,7 +2395,7 @@ class Context
|
|||
*/
|
||||
public static function addHtmlHeader($header)
|
||||
{
|
||||
self::$_instance->html_header .= "\n" . $header;
|
||||
self::$_instance->html_header .= (self::$_instance->html_header ? "\n" : '') . $header;
|
||||
}
|
||||
|
||||
public static function clearHtmlHeader()
|
||||
|
|
@ -2442,7 +2442,7 @@ class Context
|
|||
*/
|
||||
public static function addBodyHeader($header)
|
||||
{
|
||||
self::$_instance->body_header .= "\n" . $header;
|
||||
self::$_instance->body_header .= (self::$_instance->body_header ? "\n" : '') . $header;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -2462,7 +2462,7 @@ class Context
|
|||
*/
|
||||
public static function addHtmlFooter($footer)
|
||||
{
|
||||
self::$_instance->html_footer .= (self::$_instance->Htmlfooter ? "\n" : '') . $footer;
|
||||
self::$_instance->html_footer .= (self::$_instance->html_footer ? "\n" : '') . $footer;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue