1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Fix document upload

This commit is contained in:
Hillel Coren 2016-09-14 10:08:46 +03:00
parent 7ef53cecfb
commit 8f90e4ba43

View File

@ -60,10 +60,16 @@ class HistoryUtils
public static function trackViewed(EntityModel $entity)
{
if ($entity->isEntityType(ENTITY_CREDIT)
|| $entity->isEntityType(ENTITY_PAYMENT)
|| $entity->isEntityType(ENTITY_VENDOR)
|| $entity->isEntityType(ENTITY_EXPENSE_CATEGORY)) {
$entityType = $entity->getEntityType();
$trackedTypes = [
ENTITY_CLIENT,
ENTITY_INVOICE,
ENTITY_QUOTE,
ENTITY_TASK,
ENTITY_EXPENSE
];
if ( ! in_array($entityType, $trackedTypes)) {
return;
}