mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 16:54:06 +02:00
parent
fbef8866ce
commit
e853dc40fc
@ -25,6 +25,9 @@ master (will be 1.6.0)
|
||||
### Configuration rendering
|
||||
* FIX: Fix compatibility with Icinga v2.6, got broken with v1.5.0 (#1614)
|
||||
|
||||
### REST API
|
||||
* FIX: No more invalid JSON in some special circumstances (#1314)
|
||||
|
||||
1.5.1
|
||||
-----
|
||||
### Fixed issues
|
||||
|
@ -59,6 +59,12 @@ abstract class ObjectController extends ActionController
|
||||
$handler->setObject($this->object);
|
||||
}
|
||||
$handler->dispatch();
|
||||
// Hint: also here, hard exit. There is too much magic going on.
|
||||
// Letting this bubble up smoothly would be "correct", but proved
|
||||
// to be too fragile. Web 2, all kinds of pre/postDispatch magic,
|
||||
// different view renderers - hard exit is the only safe bet right
|
||||
// now.
|
||||
exit;
|
||||
} else {
|
||||
$this->eventuallyLoadObject();
|
||||
if ($this->getRequest()->getActionName() === 'add') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user