1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Change share entry behavior

This commit is contained in:
Nicolas Lœuillet 2016-08-23 16:49:12 +02:00
parent 3377c938f8
commit f1be7af446
17 changed files with 81 additions and 23 deletions

View file

@ -436,8 +436,6 @@ class Entry
}
$this->updatedAt = new \DateTime();
$this->generateUuid();
}
/**
@ -634,4 +632,9 @@ class Entry
$this->uuid = uniqid('', true);
}
}
public function cleanUuid()
{
$this->uuid = null;
}
}