mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[DisplayAction] Fix function call on a member (add ->) (#1379)
This commit is contained in:
parent
ba43c87952
commit
ba8c4623ed
@ -190,7 +190,7 @@ class DisplayAction extends ActionAbstract {
|
||||
|
||||
$items[] = $item;
|
||||
} elseif(Configuration::getConfig('error', 'output') === 'http') {
|
||||
header('Content-Type: text/html', true, get_return_code($e));
|
||||
header('Content-Type: text/html', true, $this->get_return_code($e));
|
||||
die(buildTransformException($e, $bridge));
|
||||
}
|
||||
}
|
||||
@ -222,7 +222,7 @@ class DisplayAction extends ActionAbstract {
|
||||
|
||||
$items[] = $item;
|
||||
} elseif(Configuration::getConfig('error', 'output') === 'http') {
|
||||
header('Content-Type: text/html', true, get_return_code($e));
|
||||
header('Content-Type: text/html', true, $this->get_return_code($e));
|
||||
die(buildTransformException($e, $bridge));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user