Problems with beforeFind after upgrading

After upgrading from 1.0 til 1.1, a beforeFind is being ignored.

In some child class:




public function beforeFind() {

	$this->getDbCriteria()->mergeWith(array(

		'order' => '`id` = 10, `caption`',

	));

	parent::beforeFind();

}



A parent class:




public function beforeFind() {

	$this->getDbCriteria()->mergeWith(array(

		'condition' => '`t`.`type` = "' . $this->getType() . '"',

	));

	parent::beforeFind();

}



Both conditions is ignored.

Thanks in advance!

Someone? :)

Are those functions event callbacks (public) or did you forget to declare them as protected?

Edit:

This thread is probably relevant in the first case.

/Tommy