Hi guys,
I'm trying to create a simple query to update some records.
$this->update(array('lft'=>'lft + 2'), 'lft > ' . $lft);
This works fine, except it does not write the correct value in the lft column, it just writes '0', where as it should be 'lft + 2' i.e. the original value + 2. I'm not quite sure what I'm doing wrong.
TIA