CGridView duplicates header text

hello,

It seems like when I set the label in my CGridView view, it duplicates the text:




<?php $this->widget('zii.widgets.grid.CGridView', array(

	'id' => 'contact-grid',

	'dataProvider'=>$dataProvider,

	'columns' => array( 

		'id',

		'firstname:raw:First Name',

...



and it looks like:

First NameFirst Name

where the first [i]First Name[/i] is a link for sorting and the second one is just text …

the generated HTML looks like this




<th id="contact-grid_c1">

  <a href="/index.php?r=contact/contact/index&amp;Contact_sort=firstname">First Name</a>First Name

</th>



Not sure what’s going on :confused: I’m using the SVN branch btw

thanks,

–iM

Thanks. Fixed.

wow, that was fast, I already pulled down the update and it works!

you are the man Qiang :)

thanks,

–iM