From c198f54578fc982e7e9f2ee77f700892bbab9f70 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Thu, 9 Jan 2014 08:05:00 +0400 Subject: [PATCH] \yii\i18n\DbMessageSource updated --- framework/yii/i18n/DbMessageSource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/i18n/DbMessageSource.php b/framework/yii/i18n/DbMessageSource.php index b660a86..9d43727 100644 --- a/framework/yii/i18n/DbMessageSource.php +++ b/framework/yii/i18n/DbMessageSource.php @@ -68,11 +68,11 @@ class DbMessageSource extends MessageSource /** * @var string the name of the source message table. */ - public $sourceMessageTable = 'tbl_source_message'; + public $sourceMessageTable = '{{%source_message}}'; /** * @var string the name of the translated message table. */ - public $messageTable = 'tbl_message'; + public $messageTable = '{{%message}}'; /** * @var integer the time in seconds that the messages can remain valid in cache. * Use 0 to indicate that the cached data will never expire.