unmark for archival

This commit is contained in:
Michael 2017-12-04 19:36:08 +00:00
parent 3bb53967f4
commit 360e39ca5b
2 changed files with 5 additions and 7 deletions

View file

@ -145,7 +145,6 @@ class Contact extends BaseObject
if ($contact['archive']) {
return;
}
logger('Blubb-m: '.$contact['id'].' - '.System::callstack());
if ($contact['term-date'] <= NULL_DATE) {
dba::update('contact', array('term-date' => datetime_convert()), array('id' => $contact['id']));
@ -185,8 +184,7 @@ logger('Blubb-m: '.$contact['id'].' - '.System::callstack());
*/
public static function unmarkForArchival(array $contact)
{
//logger('Blubb-m: '.$contact['id'].' - '.System::callstack());
$condition = array('`id` = ? AND (`term-date` > ? OR `archive`)', $contact[`id`], NULL_DATE);
$condition = array('`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], NULL_DATE);
$exists = dba::exists('contact', $condition);
// We don't need to update, we never marked this contact for archival