GridView typo fixed

This commit is contained in:
Alexander Kochetov
2014-01-23 23:59:02 +04:00
parent 4fe0eeb1b6
commit cd8a948e1f

View File

@@ -416,7 +416,7 @@ class GridView extends BaseListView
protected function createDataColumn($text)
{
if (!preg_match('/^([\w\.]+)(:(\w*))?(:(.*))?$/', $text, $matches)) {
throw new InvalidConfigException('The column must be specified in the format of "attribute", "attribute:format" or "attribute:format:label');
throw new InvalidConfigException('The column must be specified in the format of "attribute", "attribute:format" or "attribute:format:label"');
}
return Yii::createObject([
'class' => $this->dataColumnClass ?: DataColumn::className(),