mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix incorrect variable reference
This commit is contained in:
parent
4fd1804d27
commit
093fa43e37
1 changed files with 2 additions and 2 deletions
|
|
@ -720,9 +720,9 @@ class ModuleObject extends BaseObject
|
|||
{
|
||||
$this->setError($triggerOutput->getError());
|
||||
$this->setMessage($triggerOutput->getMessage());
|
||||
if($output->get('rx_error_location'))
|
||||
if($triggerOutput->get('rx_error_location'))
|
||||
{
|
||||
$this->add('rx_error_location', $output->get('rx_error_location'));
|
||||
$this->add('rx_error_location', $triggerOutput->get('rx_error_location'));
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue