Fixes #3212: removed unnecessary prepare() call.

This commit is contained in:
Qiang Xue
2014-04-22 11:51:28 -04:00
parent 480114e820
commit 9c5429740d

View File

@ -101,7 +101,6 @@ abstract class BaseListView extends Widget
if ($this->emptyText === null) { if ($this->emptyText === null) {
$this->emptyText = Yii::t('yii', 'No results found.'); $this->emptyText = Yii::t('yii', 'No results found.');
} }
$this->dataProvider->prepare();
} }
/** /**