Hey guys,
had a few minor problems upgrading (because I had customized Session
component, my own fault :-D), but I think this one is not my fault. I
get the following error when trying to delete an Aro entry,
Fatal error: Call to undefined function: getfieldvalue() in
D:\eclipseworkspaces\main_branch\cake\libs\controller\components\dbacl
\models\aclnode.php
on line 113
Checking out this line shows it expects the class DataSource to have a
method getfieldvalue(), which it does not appear to have...
This is the code that makes the ACL/Aro call, it is in my
users_controller.php,
function delete($id) {
if($this->User->del($id)) {
$aro = new Aro();
// delete the corresponding ARO
$aro->delete($id);
$this->Session->setFlash('The User deleted: id
'.$id.'');
$this->redirect('/users/index');
}
}
I would be grateful if someone else could try this out before making a
fool of myself and open a bug report.
thanks,
Rob