When updating a single field it is better to use saveField(). Assuming 4 is
the ID of the user you are trying to save:
$this->User->id = 4;
$this->User->saveField('last_login', date('Y-m-d H:i:s'))
If your query is only saving when disabling validation that means that it is
not validating :) You should debug to see what fields are invalid.
-MI
---------------------------------------------------------------------------
Remember, smart coders answer ten questions for every question they ask.
So be smart, be cool, and share your knowledge.
BAKE ON!
-----Mensaje original-----
De: [email protected] [mailto:[EMAIL PROTECTED] En nombre
de Seb
Enviado el: Martes, 05 de Diciembre de 2006 02:02 a.m.
Para: Cake PHP
Asunto: manually update datetime field...
I do this;
$someone['User']['last_login'] = date('Y-m-d H:i:s');
$this->User->save($someone);
Which should be updating the last_login field with the current
datetimestamp; though it doesn't work.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---