From 89e46de0d41afcd2ded1efe4aaea2475c12596bb Mon Sep 17 00:00:00 2001 From: mdomba Date: Wed, 2 Feb 2011 14:54:40 +0000 Subject: [PATCH] Changed order of rendering primary keys as google could get the primary keys before the content --- framework/zii/widgets/CBaseListView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/zii/widgets/CBaseListView.php b/framework/zii/widgets/CBaseListView.php index d34d41770..df7e87d21 100644 --- a/framework/zii/widgets/CBaseListView.php +++ b/framework/zii/widgets/CBaseListView.php @@ -123,8 +123,8 @@ abstract class CBaseListView extends CWidget echo CHtml::openTag($this->tagName,$this->htmlOptions)."\n"; - $this->renderKeys(); $this->renderContent(); + $this->renderKeys(); echo CHtml::closeTag($this->tagName); }