mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 21:41:19 +08:00
Fixes #16945: Fixed RBAC DbManager ruleName fetching on the case of PDO::ATTR_ORACLE_NULLS => PDO::NULL_TO_STRING
This commit is contained in:
committed by
Alexander Makarov
parent
b128ec85f4
commit
2b79a0c5ba
@ -4,6 +4,7 @@ Yii Framework 2 Change Log
|
|||||||
2.0.16 under development
|
2.0.16 under development
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
- Bug #16945: Fixed RBAC DbManager ruleName fetching on the case of PDO::ATTR_ORACLE_NULLS => PDO::NULL_TO_STRING (razonyang)
|
||||||
- Bug #16081: Fixed composite IN using just one column (rugabarbo)
|
- Bug #16081: Fixed composite IN using just one column (rugabarbo)
|
||||||
- Bug #16926: Fix shell autocompletion (GHopperMSK)
|
- Bug #16926: Fix shell autocompletion (GHopperMSK)
|
||||||
- Bug #15850: check basePath is writable on publish in AssetManager (Groonya)
|
- Bug #15850: check basePath is writable on publish in AssetManager (Groonya)
|
||||||
|
|||||||
@ -451,7 +451,7 @@ class DbManager extends BaseManager
|
|||||||
'name' => $row['name'],
|
'name' => $row['name'],
|
||||||
'type' => $row['type'],
|
'type' => $row['type'],
|
||||||
'description' => $row['description'],
|
'description' => $row['description'],
|
||||||
'ruleName' => $row['rule_name'],
|
'ruleName' => $row['rule_name'] ?: null,
|
||||||
'data' => $data,
|
'data' => $data,
|
||||||
'createdAt' => $row['created_at'],
|
'createdAt' => $row['created_at'],
|
||||||
'updatedAt' => $row['updated_at'],
|
'updatedAt' => $row['updated_at'],
|
||||||
|
|||||||
Reference in New Issue
Block a user