Changed order of rendering primary keys as google could get the primary keys before the content

This commit is contained in:
mdomba
2011-02-02 14:54:40 +00:00
parent 5c50e87b40
commit 89e46de0d4

View File

@@ -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);
}