CPagination in CActiveDataProvider, params attribute doesn't work




$dataProvider = new CActiveDataProvider('Azienda', array(

					'criteria' => array(

						'condition' => "nome LIKE :search OR keyword1 LIKE :search OR keyword2 LIKE :search OR keyword3 LIKE :search OR keyword4 LIKE :search OR keyword5 LIKE :search",

						'params' => array( ":search" => "%$form->search%" ),

					),

					'pagination'=>array(

						'pageSize'=>self::PAGE_SIZE,

						'params' => array( 'key' => 'value' ),

					),

				));



and key=value it’s not attached to the generated url…

What’s wrong?

my fault, I was looking to the CSort widget <.< I’m pretty tired :)