fixes #648
This commit is contained in:
parent
7a2fec88ed
commit
52169a4197
@ -63,7 +63,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
|||||||
$event->getInvoker()->$createdName = $this->getTimestamp('created');
|
$event->getInvoker()->$createdName = $this->getTimestamp('created');
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ! $this->_options['updated']['disabled']) {
|
if( ! $this->_options['updated']['disabled'] && $this->_options['updated']['onInsert']) {
|
||||||
$updatedName = $this->_options['updated']['name'];
|
$updatedName = $this->_options['updated']['name'];
|
||||||
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
||||||
}
|
}
|
||||||
|
@ -50,6 +50,7 @@ class Doctrine_Template_Timestampable extends Doctrine_Template
|
|||||||
'format' => 'Y-m-d H:i:s',
|
'format' => 'Y-m-d H:i:s',
|
||||||
'disabled' => false,
|
'disabled' => false,
|
||||||
'expression' => false,
|
'expression' => false,
|
||||||
|
'onInsert' => true,
|
||||||
'options' => array()));
|
'options' => array()));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user