mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
오타로 Context::addHtmlFooter()시 줄바꿈되지 않은 문제 수정
This commit is contained in:
parent
5571a16619
commit
adf067e557
1 changed files with 3 additions and 3 deletions
|
|
@ -2459,7 +2459,7 @@ class Context
|
|||
*/
|
||||
public static function addHtmlHeader($header)
|
||||
{
|
||||
self::$_instance->html_header .= "\n" . $header;
|
||||
self::$_instance->html_header .= (self::$_instance->html_header ? PHP_EOL : '') . $header;
|
||||
}
|
||||
|
||||
public static function clearHtmlHeader()
|
||||
|
|
@ -2506,7 +2506,7 @@ class Context
|
|||
*/
|
||||
public static function addBodyHeader($header)
|
||||
{
|
||||
self::$_instance->body_header .= "\n" . $header;
|
||||
self::$_instance->body_header .= (self::$_instance->body_header ? PHP_EOL : '') . $header;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -2526,7 +2526,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 ? PHP_EOL : '') . $footer;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue