mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
parent
ccd4d694d8
commit
ccd6f4266a
@ -4,9 +4,19 @@
|
|||||||
Please make sure to always read our [Upgrading](05-Upgrading.md) documentation
|
Please make sure to always read our [Upgrading](05-Upgrading.md) documentation
|
||||||
before switching to a new version.
|
before switching to a new version.
|
||||||
|
|
||||||
next (will be 1.9.0)
|
next (will be 1.9.1)
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
### Fixed issues
|
||||||
|
* You can find issues and feature requests related to this release on our
|
||||||
|
[roadmap](https://github.com/Icinga/icingaweb2-module-director/milestone/28?closed=1)
|
||||||
|
|
||||||
|
### User Interface
|
||||||
|
* FIX: DataList-backed fields failed to validate (#2475)
|
||||||
|
|
||||||
|
1.9.0
|
||||||
|
-----
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
* Module dependencies have been raised, [Upgrading](05-Upgrading.md) and
|
* Module dependencies have been raised, [Upgrading](05-Upgrading.md) and
|
||||||
[Installation](02-Installation.md) documentations contain related details
|
[Installation](02-Installation.md) documentations contain related details
|
||||||
|
@ -1371,7 +1371,7 @@ abstract class DbObject
|
|||||||
|
|
||||||
/** @var DbObject $obj */
|
/** @var DbObject $obj */
|
||||||
$obj = new static;
|
$obj = new static;
|
||||||
if (self::$dbObjectStore !== null) {
|
if (self::$dbObjectStore !== null && $obj->hasUuidColumn()) {
|
||||||
$table = $obj->getTableName();
|
$table = $obj->getTableName();
|
||||||
assert($connection instanceof Db);
|
assert($connection instanceof Db);
|
||||||
$uuid = UuidLookup::findUuidForKey($id, $table, $connection, self::$dbObjectStore->getBranch());
|
$uuid = UuidLookup::findUuidForKey($id, $table, $connection, self::$dbObjectStore->getBranch());
|
||||||
@ -1418,7 +1418,7 @@ abstract class DbObject
|
|||||||
$db = $connection->getDbAdapter();
|
$db = $connection->getDbAdapter();
|
||||||
$obj = new static;
|
$obj = new static;
|
||||||
|
|
||||||
if (self::$dbObjectStore !== null) {
|
if (self::$dbObjectStore !== null && $obj->hasUuidColumn()) {
|
||||||
$table = $obj->getTableName();
|
$table = $obj->getTableName();
|
||||||
assert($connection instanceof Db);
|
assert($connection instanceof Db);
|
||||||
return self::$dbObjectStore->load($table, $uuid);
|
return self::$dbObjectStore->load($table, $uuid);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user