From c8f016d895cc20d0ca8642210c2b364518cbed42 Mon Sep 17 00:00:00 2001 From: LAV45 Date: Thu, 9 Jan 2014 14:29:59 +0300 Subject: [PATCH] Fix table name on yii\rbac\DbManager::$itemChildTable --- framework/yii/rbac/DbManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/rbac/DbManager.php b/framework/yii/rbac/DbManager.php index 2e47e50..111bf0a 100644 --- a/framework/yii/rbac/DbManager.php +++ b/framework/yii/rbac/DbManager.php @@ -45,7 +45,7 @@ class DbManager extends Manager /** * @var string the name of the table storing authorization item hierarchy. Defaults to 'tbl_auth_item_child'. */ - public $itemChildTable = '{{%auth_item_child}'; + public $itemChildTable = '{{%auth_item_child}}'; /** * @var string the name of the table storing authorization item assignments. Defaults to 'tbl_auth_assignment'. */