mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix error when error message is null
This commit is contained in:
parent
316cb49729
commit
e0a828079b
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class MessageView extends Message
|
|||
Context::set('ssl_mode', \RX_SSL);
|
||||
Context::set('system_message', nl2br($this->getMessage()));
|
||||
Context::set('system_message_detail', nl2br($detail));
|
||||
Context::set('system_message_help', self::getErrorHelp($detail));
|
||||
Context::set('system_message_help', self::getErrorHelp(strval($detail)));
|
||||
Context::set('system_message_location', escape($location));
|
||||
|
||||
if ($this->getError())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue