Hello
I have this statement on a query
$sql = "select * from mod_images_item where images_status = 2 [b]order by rand()[/b] limit 0,20";
$this->data=images::finder()->withspace()->findbysql($sql);
$this->repeater->DataSource=$this->data;
$this->repeater->dataBind();
But since I updated my PRADO 3.1 version in order to fix the ControlCssClass bug I get this error message on the sql query
Invalid column name 'rand()' for database table '`mod_images_item`'.
My whole application is failing. Any ideas about why is this order by rand() feature not working anymore?
thanks