03-30-2017, 06:22 PM
Got it to work... silly me noticed now that this:
was actually suppose to be:
So in essence I has the wrong name for the DB field...
Thanks for your help buddy... Much appreciated
Code:
$fields = array(
Code:
‘lastupdatedby’ => $user->data()->id,
was actually suppose to be:
Code:
$fields = array(
Code:
‘lasteditedby’ => $user->data()->id,
So in essence I has the wrong name for the DB field...
Thanks for your help buddy... Much appreciated